ATLAS Offline Software
Classes | Functions
python.LArConditionsContainer Namespace Reference

Classes

class  LArConditionsContainer
 

Functions

def conditionsIter (self, gain)
 
def correctionsIter (self, gain)
 
def coolChannelIter (self)
 
def coolIOVIter (self)
 

Function Documentation

◆ conditionsIter()

def python.LArConditionsContainer.conditionsIter (   self,
  gain 
)

Definition at line 22 of file LArConditionsContainer.py.

22 def conditionsIter(self, gain) :
23  sequential = self.begin(gain)
24  end = self.end(gain)
25  while sequential != end :
26  yield sequential.__deref__(), sequential.channelId()
27  sequential.__preinc__()
28  raise StopIteration
29 

◆ coolChannelIter()

def python.LArConditionsContainer.coolChannelIter (   self)

Definition at line 38 of file LArConditionsContainer.py.

38 def coolChannelIter(self) :
39  sequential = self.chan_begin()
40  end = self.chan_end()
41  while sequential != end :
42  yield sequential.__deref__()
43  sequential.__preinc__()
44  raise StopIteration
45 

◆ coolIOVIter()

def python.LArConditionsContainer.coolIOVIter (   self)

Definition at line 46 of file LArConditionsContainer.py.

46 def coolIOVIter(self) :
47  sequential = self.iov_begin()
48  end = self.iov_end()
49  while sequential != end :
50  yield sequential.__deref__()
51  sequential.__preinc__()
52  raise StopIteration
53 

◆ correctionsIter()

def python.LArConditionsContainer.correctionsIter (   self,
  gain 
)

Definition at line 30 of file LArConditionsContainer.py.

30 def correctionsIter(self, gain) :
31  sequential = self.correctionsBegin(gain)
32  end = self.correctionsEnd(gain)
33  while sequential != end :
34  yield sequential.__deref__()
35  sequential.__preinc__()
36  raise StopIteration
37 
python.LArConditionsContainer.coolIOVIter
def coolIOVIter(self)
Definition: LArConditionsContainer.py:46
python.LArConditionsContainer.conditionsIter
def conditionsIter(self, gain)
Definition: LArConditionsContainer.py:22
python.LArConditionsContainer.coolChannelIter
def coolChannelIter(self)
Definition: LArConditionsContainer.py:38
python.LArConditionsContainer.correctionsIter
def correctionsIter(self, gain)
Definition: LArConditionsContainer.py:30