Definition at line 186 of file samplers.py.
◆ result
◆ __init__()
| python.samplers.TH1Sampler.__init__ |
( |
| self, |
|
|
* | args ) |
Definition at line 189 of file samplers.py.
189 def __init__(self, *args):
190 self.hist = TH1(*args)
192 raise Exception("Histogram %s is EMPTY! Cannot sample" % self.hist.GetName())
193
TGraphErrors * GetEntries(TH2F *histo)
◆ __call__()
| python.samplers.Sampler.__call__ |
( |
| self | ) |
|
|
inherited |
This is the call method that will actually be used (so that normal
functions can also be passed in as samplers).
Definition at line 17 of file samplers.py.
17 def __call__(self):
18 """This is the call method that will actually be used (so that normal
19 functions can also be passed in as samplers)."""
20 return self.shoot()
21
◆ shoot()
| python.samplers.TH1Sampler.shoot |
( |
| self | ) |
|
◆ hist
| python.samplers.TH1Sampler.hist = TH1(*args) |
The documentation for this class was generated from the following file: