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

Public Member Functions

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

Public Attributes

 intL
 
 l1acc
 
 l2acc
 
 l3acc
 
 livetime
 
 ngood
 
 nbadstat
 

Detailed Description

Class to hold luminosity calculation result

Definition at line 55 of file LumiCalculator.py.

Constructor & Destructor Documentation

◆ __init__()

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

def 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

Definition at line 58 of file LumiCalculator.py.

◆ l1acc

python.LumiCalculator.lumiResult.l1acc

Definition at line 59 of file LumiCalculator.py.

◆ l2acc

python.LumiCalculator.lumiResult.l2acc

Definition at line 60 of file LumiCalculator.py.

◆ l3acc

python.LumiCalculator.lumiResult.l3acc

Definition at line 61 of file LumiCalculator.py.

◆ livetime

python.LumiCalculator.lumiResult.livetime

Definition at line 62 of file LumiCalculator.py.

◆ nbadstat

python.LumiCalculator.lumiResult.nbadstat

Definition at line 64 of file LumiCalculator.py.

◆ ngood

python.LumiCalculator.lumiResult.ngood

Definition at line 63 of file LumiCalculator.py.


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