oxyroot 0.1.25

Another attempt to make library reading and writing of `.root` binary files which are commonly used in particle physics
Documentation
1
2
3
4
5
6
7
8
9
10
11
// start of payload in a TFile (in bytes)
#[allow(non_upper_case_globals)]
pub(crate) const kBEGIN: i64 = 100;

// kStartBigFile-1 is the largest position in a ROOT file before switching to
// the "big file" scheme (supporting files bigger than 4Gb) of ROOT.
#[allow(non_upper_case_globals)]
pub(crate) const kStartBigFile: i64 = 2000000000;

#[allow(non_upper_case_globals)]
pub(crate) const kGenerateOffsetMap: u8 = 0;