|
| file |
| output file
|
|
| tree |
| output ttree
|
|
| data |
| instance of EventDataStrip class
|
|
class to create the strip ttree
Definition at line 46 of file SVDValidationTTreeStrip.py.
◆ __init__()
Initialize the module
Definition at line 49 of file SVDValidationTTreeStrip.py.
50 """Initialize the module"""
52 super(SVDValidationTTreeStrip, self).__init__()
54 self.file = ROOT.TFile(
'../SVDValidationTTreeStrip.root',
'recreate')
56 self.tree = ROOT.TTree(
'tree',
'Event data of SVD validation events')
58 self.data = EventDataStrip()
61 for key
in EventDataStrip.__dict__:
64 if isinstance(self.data.__getattribute__(key), int):
66 self.tree.Branch(key, addressof(self.data, key), key + formstring)
◆ event()
◆ terminate()
The documentation for this class was generated from the following file: