16#ifndef ALICEO2_TREESTREAM_H
17#define ALICEO2_TREESTREAM_H
49 std::is_same_v<T, Float_t> ||
50 std::is_same_v<T, Double_t> ||
51 std::is_same_v<T, ULong64_t> || std::is_same_v<T, ULong_t> ||
52 std::is_same_v<T, Long64_t> || std::is_same_v<T, Long_t> ||
53 std::is_same_v<T, UInt_t> ||
54 std::is_same_v<T, Int_t> ||
55 std::is_same_v<T, UShort_t> ||
56 std::is_same_v<T, Short_t> ||
57 std::is_same_v<T, UChar_t> ||
58 std::is_same_v<T, Char_t> || std::is_same_v<T, int8_t> || std::is_same_v<T, Bool_t>;
66template <
typename T, std::
size_t N>
77template <TrivialRootType T>
78static constexpr char getRootTypeCode()
80 if constexpr (std::is_array_v<T>) {
81 return getRootTypeCode<std::remove_all_extents_t<T>>();
82 }
else if constexpr (std::is_same_v<T, Float_t>) {
84 }
else if constexpr (std::is_same_v<T, Double_t>) {
86 }
else if constexpr (std::is_same_v<T, ULong64_t> ||
87 std::is_same_v<T, ULong_t>) {
89 }
else if constexpr (std::is_same_v<T, Long64_t> ||
90 std::is_same_v<T, Long_t>) {
92 }
else if constexpr (std::is_same_v<T, UInt_t>) {
94 }
else if constexpr (std::is_same_v<T, Int_t>) {
96 }
else if constexpr (std::is_same_v<T, UShort_t>) {
98 }
else if constexpr (std::is_same_v<T, Short_t>) {
100 }
else if constexpr (std::is_same_v<T, UChar_t>) {
102 }
else if constexpr (std::is_same_v<T, Char_t> ||
103 std::is_same_v<T, int8_t> ||
104 std::is_same_v<T, Bool_t>) {
107 static_assert(
false,
"unsupported type!");
118 const TClass*
cls =
nullptr;
119 const void*
ptr =
nullptr;
130 Double_t
getSize() {
return mTree.GetZipBytes(); }
134 const char*
getName()
const {
return mTree.GetName(); }
138 template <details::TrivialRootType T>
141 CheckIn(details::getRootTypeCode<T>(), &t);
154 template <details::ComplexRootType T,
typename std::enable_if<!std::is_po
inter<GPU
generic() T>
::value,
bool>
::type* =
nullptr>
166 std::vector<TreeDataElement> mElements;
167 std::vector<TBranch*> mBranches;
169 int mCurrentIndex = 0;
171 int mNextNameCounter = 0;
172 int mNextArraySize = 0;
183 TClass* pClass =
nullptr;
185 pClass = TClass::GetClass(
typeid(*obj));
188 if (mCurrentIndex >=
static_cast<int>(mElements.size())) {
189 auto& element = mElements.emplace_back();
190 element.cls = pClass;
191 TString
name = mNextName;
193 if (mNextNameCounter > 0) {
194 name += mNextNameCounter;
197 name = TString::Format(
"B%d",
static_cast<int>(mElements.size()));
199 element.name =
name.Data();
201 element.arsize = mNextArraySize;
204 auto& element = mElements[mCurrentIndex];
206 element.cls = pClass;
208 if (element.cls != pClass && pClass) {
TreeStream & operator<<(const T *obj)
Int_t CheckIn(Char_t type, const void *pointer)
const char * getName() const
virtual ~TreeStream()=default
TreeStream & operator<<(const T &t)
TreeStream & operator<<(const T &obj)
GLuint const GLchar * name
GLsizei const GLfloat * value
GLint GLint GLsizei GLint GLenum GLenum type
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
Common utility functions.
std::string name
name of the element
const void * ptr
pointer to element
const TClass * cls
data type pointer
static constexpr bool value