CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes | Static Public Attributes
weight.Weight Class Reference
Inheritance diagram for weight.Weight:

Public Member Functions

def __init__ (self, genNEvents, xSection, genEff, intLumi=FBINV, addWeight=1)
 
def __str__ (self)
 
def GetWeight (self)
 
def SetIntLumi (self, lumi)
 

Public Attributes

 addWeight
 
 genEff
 
 genNEvents
 
 intLumi
 
 xSection
 

Static Public Attributes

 FBINV
 

Detailed Description

make names uniform wrt Component.

COLIN: messy... should I have several types of weight (base, data, mc)?
COLIN: need to add other weighting factors

Definition at line 10 of file weight.py.

Constructor & Destructor Documentation

◆ __init__()

def weight.Weight.__init__ (   self,
  genNEvents,
  xSection,
  genEff,
  intLumi = FBINV,
  addWeight = 1 
)

Definition at line 19 of file weight.py.

19  intLumi = FBINV, addWeight=1):
20  self.genNEvents = int(genNEvents)
21  if xSection is not None:
22  self.xSection = float(xSection)
23  else:
24  self.xSection = None
25  self.genEff = float(genEff)
26  if intLumi is not None:
27  self.intLumi = float(intLumi)
28  else:
29  self.intLumi = Weight.FBINV
30  self.addWeight = float(addWeight)
31 

Member Function Documentation

◆ __str__()

def weight.Weight.__str__ (   self)

Definition at line 45 of file weight.py.

References weight.Weight.addWeight, config.MCComponent.addWeight, weight.Weight.genEff, weight.Weight.genNEvents, weight.Weight.GetWeight(), weight.Weight.intLumi, config.DataComponent.intLumi, config.MCComponent.intLumi, weight.Weight.xSection, and config.MCComponent.xSection.

45  def __str__(self):
46  if self.xSection is None:
47  return ' intLumi = %5.2f, addWeight = %3.2f' \
48  % ( self.intLumi,
49  self.addWeight )
50  else:
51  return ' genN = %d, xsec = %5.5f pb, genEff = %2.2f, intLumi = %5.2f, addWeight = %3.2f -> weight = %3.5f' \
52  % ( self.genNEvents,
53  self.xSection,
54  self.genEff,
55  self.intLumi,
56  self.addWeight,
57  self.GetWeight() )
58 
59 
60 

◆ GetWeight()

def weight.Weight.GetWeight (   self)
Return the weight

Definition at line 32 of file weight.py.

References weight.Weight.addWeight, config.MCComponent.addWeight, weight.Weight.genEff, weight.Weight.genNEvents, weight.Weight.intLumi, config.DataComponent.intLumi, config.MCComponent.intLumi, weight.Weight.xSection, and config.MCComponent.xSection.

Referenced by weight.Weight.__str__().

32  def GetWeight(self):
33  '''Return the weight'''
34  if self.xSection is None:
35  # data
36  return 1
37  else:
38  # MC
39  return self.addWeight * self.xSection * self.intLumi / ( self.genNEvents * self.genEff)
40 

◆ SetIntLumi()

def weight.Weight.SetIntLumi (   self,
  lumi 
)
Set integrated luminosity.

Definition at line 41 of file weight.py.

References rltinfo.RLTInfo.dict, and cond::IOVKeysDescription.dict().

41  def SetIntLumi(self, lumi):
42  '''Set integrated luminosity.'''
43  self.dict['intLumi'] = lumi
44 

Member Data Documentation

◆ addWeight

weight.Weight.addWeight

Definition at line 30 of file weight.py.

Referenced by weight.Weight.__str__(), and weight.Weight.GetWeight().

◆ FBINV

weight.Weight.FBINV
static

Definition at line 16 of file weight.py.

◆ genEff

weight.Weight.genEff

Definition at line 25 of file weight.py.

Referenced by weight.Weight.__str__(), and weight.Weight.GetWeight().

◆ genNEvents

weight.Weight.genNEvents

Definition at line 20 of file weight.py.

Referenced by weight.Weight.__str__(), and weight.Weight.GetWeight().

◆ intLumi

weight.Weight.intLumi

Definition at line 27 of file weight.py.

Referenced by weight.Weight.__str__(), and weight.Weight.GetWeight().

◆ xSection

weight.Weight.xSection

Definition at line 22 of file weight.py.

Referenced by weight.Weight.__str__(), and weight.Weight.GetWeight().