ATLAS Offline Software
Loading...
Searching...
No Matches
python.LumiCalculator.lumiResult Class Reference
Collaboration diagram for python.LumiCalculator.lumiResult:

Public Member Functions

 __init__ (self, intL, l1acc, l2acc, l3acc, livetime, ngood, nbadstat)
 __add__ (self, other)

Public Attributes

 intL = intL
 l1acc = l1acc
 l2acc = l2acc
 l3acc = l3acc
 livetime = livetime
 ngood = ngood
 nbadstat = nbadstat

Detailed Description

Class to hold luminosity calculation result

Definition at line 55 of file LumiCalculator.py.

Constructor & Destructor Documentation

◆ __init__()

python.LumiCalculator.lumiResult.__init__ ( self,
intL,
l1acc,
l2acc,
l3acc,
livetime,
ngood,
nbadstat )

Definition at line 57 of file LumiCalculator.py.

57 def __init__(self,intL,l1acc,l2acc,l3acc,livetime,ngood,nbadstat):
58 self.intL=intL
59 self.l1acc=l1acc
60 self.l2acc=l2acc
61 self.l3acc=l3acc
62 self.livetime=livetime
63 self.ngood=ngood
64 self.nbadstat=nbadstat
65

Member Function Documentation

◆ __add__()

python.LumiCalculator.lumiResult.__add__ ( self,
other )

Definition at line 66 of file LumiCalculator.py.

66 def __add__(self,other):
67 "addition of two lumiResults - accumulate totals"
68 return lumiResult(self.intL+other.intL,self.l1acc+other.l1acc,self.l2acc+other.l2acc,self.l3acc+other.l3acc,self.livetime+other.livetime,self.ngood+other.ngood,self.nbadstat+other.nbadstat)
69

Member Data Documentation

◆ intL

python.LumiCalculator.lumiResult.intL = intL

Definition at line 58 of file LumiCalculator.py.

◆ l1acc

python.LumiCalculator.lumiResult.l1acc = l1acc

Definition at line 59 of file LumiCalculator.py.

◆ l2acc

python.LumiCalculator.lumiResult.l2acc = l2acc

Definition at line 60 of file LumiCalculator.py.

◆ l3acc

python.LumiCalculator.lumiResult.l3acc = l3acc

Definition at line 61 of file LumiCalculator.py.

◆ livetime

python.LumiCalculator.lumiResult.livetime = livetime

Definition at line 62 of file LumiCalculator.py.

◆ nbadstat

python.LumiCalculator.lumiResult.nbadstat = nbadstat

Definition at line 64 of file LumiCalculator.py.

◆ ngood

python.LumiCalculator.lumiResult.ngood = ngood

Definition at line 63 of file LumiCalculator.py.


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