|
| file |
| Output ROOT file.
|
|
| tree |
| TTree for output data.
|
|
| data |
| instance of EventData class
|
|
class to produce the ttree for cluster reconstruction validation
Definition at line 72 of file SVDValidationTTreeCluster.py.
◆ __init__()
Initialize the module
Definition at line 75 of file SVDValidationTTreeCluster.py.
76 """Initialize the module"""
78 super(SVDValidationTTreeCluster, self).__init__()
81 self.file = ROOT.TFile(
'../SVDValidationTTreeCluster.root',
'recreate')
83 self.tree = ROOT.TTree(
'tree',
'Event data of SVD validation events')
85 self.data = EventDataCluster()
88 for key
in EventDataCluster.__dict__:
91 if isinstance(self.data.__getattribute__(key), int):
93 self.tree.Branch(key, addressof(self.data, key), key + formstring)
◆ event()
◆ terminate()
The documentation for this class was generated from the following file: