CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Public Attributes
config.DataComponent Class Reference
Inheritance diagram for config.DataComponent:
config.Component config.CFG

Public Member Functions

def __init__
 
def getWeight
 
- Public Member Functions inherited from config.Component
def __init__
 
- Public Member Functions inherited from config.CFG
def __init__
 
def __str__
 
def clone
 

Public Attributes

 intLumi
 
 isData
 
 json
 
- Public Attributes inherited from config.Component
 dataset_entries
 
 isData
 
 isEmbed
 
 isMC
 

Detailed Description

Definition at line 206 of file config.py.

Constructor & Destructor Documentation

def config.DataComponent.__init__ (   self,
  name,
  files,
  intLumi = None,
  triggers = [],
  json = None 
)

Definition at line 208 of file config.py.

209  def __init__(self, name, files, intLumi=None, triggers=[], json=None):
210  super(DataComponent, self).__init__(name, files, triggers=triggers)
211  self.isData = True
212  self.intLumi = intLumi
213  self.json = json

Member Function Documentation

def config.DataComponent.getWeight (   self,
  intLumi = None 
)

Definition at line 214 of file config.py.

References config.DataComponent.intLumi.

215  def getWeight( self, intLumi = None):
216  return Weight( genNEvents = -1,
217  xSection = None,
218  genEff = -1,
219  intLumi = self.intLumi,
220  addWeight = 1. )
221 
222 

Member Data Documentation

config.DataComponent.intLumi

Definition at line 211 of file config.py.

Referenced by weight.Weight.__str__(), weight.Weight.GetWeight(), config.DataComponent.getWeight(), and config.MCComponent.getWeight().

config.DataComponent.isData

Definition at line 210 of file config.py.

config.DataComponent.json

Definition at line 212 of file config.py.