2024-07-12 09:53:01 +02:00
|
|
|
// using RNTuple = ROOT::Experimental::RNTuple;
|
2024-07-11 14:00:43 +02:00
|
|
|
|
|
|
|
struct Byte_Range {
|
|
|
|
u64 start, len;
|
|
|
|
u64 end() const { return start + len; }
|
|
|
|
};
|
|
|
|
|
2024-07-12 11:58:55 +02:00
|
|
|
struct RNTuple_Data {
|
2024-07-12 10:25:58 +02:00
|
|
|
struct {
|
|
|
|
u16 epoch, major, minor, patch;
|
|
|
|
} version;
|
|
|
|
|
2024-07-11 16:29:44 +02:00
|
|
|
u64 root_file_header_size;
|
|
|
|
u64 rblob_header_size;
|
|
|
|
Byte_Range rng_anchor;
|
|
|
|
Byte_Range rng_anchor_key;
|
|
|
|
Byte_Range rng_header;
|
|
|
|
Byte_Range rng_footer;
|
2024-07-11 14:00:43 +02:00
|
|
|
};
|