ATLAS Offline Software
Loading...
Searching...
No Matches
python.samplers.InvSampler Class Reference
Inheritance diagram for python.samplers.InvSampler:
Collaboration diagram for python.samplers.InvSampler:

Public Types

typedef HLT::TypeInformation::for_each_type_c< typenameEDMLIST::map, my_functor, my_result<>, my_arg< HLT::TypeInformation::get_cont, CONTAINER > >::type result

Public Member Functions

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

Public Attributes

 low = float(low)
 high = float(high)

Detailed Description

Definition at line 171 of file samplers.py.

Member Typedef Documentation

◆ result

Definition at line 90 of file EDM_MasterSearch.h.

Constructor & Destructor Documentation

◆ __init__()

python.samplers.InvSampler.__init__ ( self,
low,
high )

Definition at line 174 of file samplers.py.

174 def __init__(self, low, high):
175 self.low = float(low)
176 self.high = float(high)
177

Member Function Documentation

◆ __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.InvSampler.shoot ( self)

Reimplemented from python.samplers.Sampler.

Definition at line 178 of file samplers.py.

178 def shoot(self):
179 invx = random.uniform(1/self.high, 1/self.low) #< limit inversion not actually necessary
180 return 1./invx
181
182

Member Data Documentation

◆ high

python.samplers.InvSampler.high = float(high)

Definition at line 176 of file samplers.py.

◆ low

python.samplers.InvSampler.low = float(low)

Definition at line 175 of file samplers.py.


The documentation for this class was generated from the following file: