ATLAS Offline Software
Public Member Functions | Public Attributes | List of all members
python.samplers.TH1Sampler Class Reference
Inheritance diagram for python.samplers.TH1Sampler:
Collaboration diagram for python.samplers.TH1Sampler:

Public Member Functions

def __init__ (self, *args)
 
def shoot (self)
 
def __call__ (self)
 

Public Attributes

 hist
 

Detailed Description

Definition at line 186 of file samplers.py.

Constructor & Destructor Documentation

◆ __init__()

def python.samplers.TH1Sampler.__init__ (   self,
args 
)

Definition at line 189 of file samplers.py.

189  def __init__(self, *args):
190  self.hist = TH1(*args)
191  if self.hist.GetEntries() < 1:
192  raise Exception("Histogram %s is EMPTY! Cannot sample" % self.hist.GetName())
193 

Member Function Documentation

◆ __call__()

def 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()

def python.samplers.TH1Sampler.shoot (   self)

Reimplemented from python.samplers.Sampler.

Definition at line 194 of file samplers.py.

194  def shoot(self):
195  return self.hist.GetRandom()
196 
197 

Member Data Documentation

◆ hist

python.samplers.TH1Sampler.hist

Definition at line 190 of file samplers.py.


The documentation for this class was generated from the following file:
python.processes.powheg.ZZ.ZZ.__init__
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Definition: ZZ.py:18
TH1
Definition: rootspy.cxx:268
generate::GetEntries
double GetEntries(TH1D *h, int ilow, int ihi)
Definition: rmsFrac.cxx:20