ATLAS Offline Software
Public Member Functions | Private Attributes | List of all members
python.LArRunFormat.LArRunInfo Class Reference
Collaboration diagram for python.LArRunFormat.LArRunInfo:

Public Member Functions

def __init__ (self, nSamples, gainType, latency, firstSample, format, runType)
 
def nSamples (self)
 
def gainType (self)
 
def latency (self)
 
def firstSample (self)
 
def format (self)
 
def runType (self)
 
def stringFormat (self)
 
def stringRunType (self)
 

Private Attributes

 _nSamples
 
 _gainType
 
 _latency
 
 _firstSample
 
 _format
 
 _runType
 

Detailed Description

Definition at line 7 of file LArRunFormat.py.

Constructor & Destructor Documentation

◆ __init__()

def python.LArRunFormat.LArRunInfo.__init__ (   self,
  nSamples,
  gainType,
  latency,
  firstSample,
  format,
  runType 
)

Definition at line 9 of file LArRunFormat.py.

9  def __init__(self,nSamples,gainType,latency,firstSample,format,runType):
10  self._nSamples = nSamples
11  self._gainType = gainType
12  self._latency = latency
13  self._firstSample = firstSample
14  self._format = format
15  self._runType = runType
16 

Member Function Documentation

◆ firstSample()

def python.LArRunFormat.LArRunInfo.firstSample (   self)

Definition at line 29 of file LArRunFormat.py.

29  def firstSample(self):
30  "firstsample"
31  return self._firstSample
32 

◆ format()

def python.LArRunFormat.LArRunInfo.format (   self)

Definition at line 33 of file LArRunFormat.py.

33  def format(self):
34  "format:0=Transparent, 1=Format 1, 2=Format 2"
35  return self._format
36 

◆ gainType()

def python.LArRunFormat.LArRunInfo.gainType (   self)

Definition at line 21 of file LArRunFormat.py.

21  def gainType(self):
22  "gainType: 0=auto,1=L,2=M,3=H,4=LM,5=LH,6=ML,7=MH,8=HL,9=HM,10=LMH,11=LHM,12=MLH,13=MHL,14=HLM,15=HML"
23  return self._gainType
24 

◆ latency()

def python.LArRunFormat.LArRunInfo.latency (   self)

Definition at line 25 of file LArRunFormat.py.

25  def latency(self):
26  "latency between l1 trigger and readout"
27  return self._latency
28 

◆ nSamples()

def python.LArRunFormat.LArRunInfo.nSamples (   self)

Definition at line 17 of file LArRunFormat.py.

17  def nSamples(self):
18  "Number of samples readout from FEB"
19  return self._nSamples
20 

◆ runType()

def python.LArRunFormat.LArRunInfo.runType (   self)

Definition at line 37 of file LArRunFormat.py.

37  def runType(self):
38  "runType: 0=RawData, 1=RawDataResult, 2=Result"
39  return self._runType
40 

◆ stringFormat()

def python.LArRunFormat.LArRunInfo.stringFormat (   self)

Definition at line 41 of file LArRunFormat.py.

41  def stringFormat(self):
42  if (self._format == 0) :
43  return 'transparent'
44  if (self._format == 1) :
45  return 'Format1'
46  if (self._format == 2) :
47  return 'Format2'
48 

◆ stringRunType()

def python.LArRunFormat.LArRunInfo.stringRunType (   self)

Definition at line 49 of file LArRunFormat.py.

49  def stringRunType(self):
50  if (self._runType ==0) :
51  return 'RawData'
52  if (self._runType ==1) :
53  return 'RawDataResult'
54  if (self._runType ==2) :
55  return 'Result'
56 
57 

Member Data Documentation

◆ _firstSample

python.LArRunFormat.LArRunInfo._firstSample
private

Definition at line 13 of file LArRunFormat.py.

◆ _format

python.LArRunFormat.LArRunInfo._format
private

Definition at line 14 of file LArRunFormat.py.

◆ _gainType

python.LArRunFormat.LArRunInfo._gainType
private

Definition at line 11 of file LArRunFormat.py.

◆ _latency

python.LArRunFormat.LArRunInfo._latency
private

Definition at line 12 of file LArRunFormat.py.

◆ _nSamples

python.LArRunFormat.LArRunInfo._nSamples
private

Definition at line 10 of file LArRunFormat.py.

◆ _runType

python.LArRunFormat.LArRunInfo._runType
private

Definition at line 15 of file LArRunFormat.py.


The documentation for this class was generated from the following file:
vtune_athena.format
format
Definition: vtune_athena.py:14
python.OnlineISConfiguration.runType
def runType
Definition: OnlineISConfiguration.py:112
python.processes.powheg.ZZ.ZZ.__init__
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Definition: ZZ.py:18
LArDigits2NtupleDumper.nSamples
nSamples
Definition: LArDigits2NtupleDumper.py:70