Go to the source code of this file.
#define GET_ARRAY |
( |
|
TYPE_t | ) |
|
Value:
Int_t len, sub_instance, index;
\
if (fNext) len = fNext->GetArrayLength(); \
index = instance / len; \
sub_instance = instance % len; \
} else { \
index = instance; \
sub_instance = 0; \
} \
TYPE_t **val = (TYPE_t**)(thisobj+fOffset);
\
return &((val[sub_instance])[index]); \
}
if(pyself &&pyself!=Py_None)
Referenced by TFormLeafInfo::GetLocalValuePointer().
#define INSTANTIATE_GETVAL |
( |
|
CLASS | ) |
|
Value:
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition at line 65 of file TFormLeafInfo.cxx.
#define INSTANTIATE_READVAL |
( |
|
CLASS | ) |
|
#define READ_ARRAY |
( |
|
TYPE_t | ) |
|
Value:
Int_t len, sub_instance, index; \
len = GetArrayLength();
\
index = instance / len; \
sub_instance = instance % len; \
} else { \
index = instance; \
sub_instance = 0; \
} \
TYPE_t **val =(TYPE_t**)(thisobj+fOffset);
\
return T((val[sub_instance])[index]); \
}
if(pyself &&pyself!=Py_None)