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

Public Member Functions

def __init__ (self, low, high)
 
def shoot (self)
 
def __call__ (self)
 

Public Attributes

 low
 
 high
 

Detailed Description

Definition at line 146 of file samplers.py.

Constructor & Destructor Documentation

◆ __init__()

def python.samplers.LogSampler.__init__ (   self,
  low,
  high 
)

Definition at line 149 of file samplers.py.

149  def __init__(self, low, high):
150  self.low = float(low)
151  self.high = float(high)
152 

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.LogSampler.shoot (   self)

Reimplemented from python.samplers.Sampler.

Definition at line 153 of file samplers.py.

153  def shoot(self):
154  rand = random.random()
155  logval = rand * math.log(self.high) + (1 - rand) * math.log(self.low)
156  val = math.exp(logval)
157  return val
158 
159 

Member Data Documentation

◆ high

python.samplers.LogSampler.high

Definition at line 151 of file samplers.py.

◆ low

python.samplers.LogSampler.low

Definition at line 150 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
readCCLHist.float
float
Definition: readCCLHist.py:83