rntviewer/src/rntuple.h

14 lines
218 B
C
Raw Normal View History

2024-07-11 14:00:43 +02:00
using RNTuple = ROOT::Experimental::RNTuple;
struct Byte_Range {
u64 start, len;
u64 end() const { return start + len; }
};
struct RNTuple_Info {
RNTuple anchor;
Byte_Range header;
Byte_Range footer;
};