ATLAS Offline Software
Loading...
Searching...
No Matches
python.LArConditionsContainer Namespace Reference

Classes

class  LArConditionsContainer

Functions

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

Function Documentation

◆ conditionsIter()

python.LArConditionsContainer.conditionsIter ( self,
gain )

Definition at line 22 of file LArConditionsContainer.py.

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

python.LArConditionsContainer.coolChannelIter ( self)

Definition at line 38 of file LArConditionsContainer.py.

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

python.LArConditionsContainer.coolIOVIter ( self)

Definition at line 46 of file LArConditionsContainer.py.

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

python.LArConditionsContainer.correctionsIter ( self,
gain )

Definition at line 30 of file LArConditionsContainer.py.

30def 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