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 11 of file weight.py.

Constructor & Destructor Documentation

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

Definition at line 20 of file weight.py.

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

Member Function Documentation

def weight.Weight.__str__ (   self)

Definition at line 46 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.

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

Definition at line 33 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__().

33  def GetWeight(self):
34  '''Return the weight'''
35  if self.xSection is None:
36  # data
37  return 1
38  else:
39  # MC
40  return self.addWeight * self.xSection * self.intLumi / ( self.genNEvents * self.genEff)
41 
def GetWeight(self)
Definition: weight.py:33
def weight.Weight.SetIntLumi (   self,
  lumi 
)
Set integrated luminosity.

Definition at line 42 of file weight.py.

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

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

Member Data Documentation

weight.Weight.addWeight

Definition at line 31 of file weight.py.

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

weight.Weight.FBINV
static

Definition at line 17 of file weight.py.

weight.Weight.genEff

Definition at line 26 of file weight.py.

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

weight.Weight.genNEvents

Definition at line 21 of file weight.py.

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

weight.Weight.intLumi

Definition at line 28 of file weight.py.

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

weight.Weight.xSection

Definition at line 23 of file weight.py.

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