Public Member Functions | |
def | __init__ |
def | FormatHistos |
def | Write |
Public Attributes | |
dir | |
hists | |
name | |
named | |
Base class to handle writing and formatting of a set of histograms. Subclass it, and simply add your histograms to the subclass. No need to put them in a list, they will be kept track of automatically by this base class. Then, fill them. Finally, you can call FormatHistos and Write.
Definition at line 4 of file histograms.py.
def histograms.Histograms.__init__ | ( | self, | |
name | |||
) |
Definition at line 11 of file histograms.py.
def histograms.Histograms.FormatHistos | ( | self, | |
style | |||
) |
Apply a style to all histograms.
Definition at line 31 of file histograms.py.
References histograms.Histograms.hists.
def histograms.Histograms.Write | ( | self, | |
dir | |||
) |
Writes all histograms to a subdirectory of dir called self.name.
Definition at line 36 of file histograms.py.
histograms.Histograms.dir |
Definition at line 38 of file histograms.py.
Referenced by Inspector.Inspector.GetListObjects().
histograms.Histograms.hists |
Definition at line 13 of file histograms.py.
Referenced by histograms.Histograms.FormatHistos().
histograms.Histograms.name |
Definition at line 12 of file histograms.py.
Referenced by VIDSelectorBase.VIDSelectorBase.initialize().
histograms.Histograms.named |
Definition at line 14 of file histograms.py.