Definition at line 252 of file PoolFile.py.
◆ result
◆ augmentationName()
| python.PoolFile.PoolOpts.augmentationName |
( |
| cls, |
|
|
| name ) |
Definition at line 296 of file PoolFile.py.
296 def augmentationName(cls, name):
297 s = (name+
"__").
split(
'_')[2]
298 if s.endswith("Form"):
299 s = s[:-4]
300 return s
301
std::vector< std::string > split(const std::string &s, const std::string &t=":")
◆ isAugmentation()
| python.PoolFile.PoolOpts.isAugmentation |
( |
| cls, |
|
|
| name ) |
Definition at line 292 of file PoolFile.py.
292 def isAugmentation(cls, name):
293 return "_DAOD_" in name
294
◆ isAugmentedHeader()
| python.PoolFile.PoolOpts.isAugmentedHeader |
( |
| cls, |
|
|
| name ) |
Definition at line 303 of file PoolFile.py.
303 def isAugmentedHeader(cls, name):
304 return name.startswith(PoolOpts.POOL_HEADER) and cls.isAugmentation(name)
305
◆ isData()
| python.PoolFile.PoolOpts.isData |
( |
| cls, |
|
|
| name ) |
Definition at line 278 of file PoolFile.py.
278 def isData(cls, name):
279 return not name.startswith("##") and not cls.isDataHeader(name)
280
◆ isDataHeader()
| python.PoolFile.PoolOpts.isDataHeader |
( |
| cls, |
|
|
| name ) |
Definition at line 282 of file PoolFile.py.
282 def isDataHeader(cls, name):
283 return name in {cls.TTreeNames.DataHeader
284 , cls.TTreeNames.DataHeader+"_DataHeader"
285 , cls.RNTupleNames.DataHeader}
286
◆ isEventData()
| python.PoolFile.PoolOpts.isEventData |
( |
| cls, |
|
|
| name ) |
Definition at line 288 of file PoolFile.py.
288 def isEventData(cls, name):
289 return name.startswith(PoolOpts.EVENT_DATA)
290
◆ EVENT_DATA
◆ FAST_MODE
| python.PoolFile.PoolOpts.FAST_MODE |
|
static |
◆ HDR_FORMAT
| str python.PoolFile.PoolOpts.HDR_FORMAT = " %11s %11s %11s %11s %5s %s" |
|
static |
◆ META_DATA
◆ POOL_HEADER
◆ READ_MODE
| str python.PoolFile.PoolOpts.READ_MODE = "READ" |
|
static |
◆ ROW_FORMAT
| str python.PoolFile.PoolOpts.ROW_FORMAT = "%12.3f kb %12.3f kb %12.3f kb %12.3f %8i %s" |
|
static |
◆ SUPER_DETAILED_BRANCH_SZ
| bool python.PoolFile.PoolOpts.SUPER_DETAILED_BRANCH_SZ = False |
|
static |
The documentation for this class was generated from the following file: