CMS 3D CMS Logo

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__ (self, name, files, intLumi=None, triggers=[], json=None)
 
def getWeight (self, intLumi=None)
 
- Public Member Functions inherited from config.Component
def __init__ (self, name, files, tree_name=None, triggers=None, **kwargs)
 
- Public Member Functions inherited from config.CFG
def __init__ (self, **kwargs)
 
def __str__ (self)
 
def clone (self, **kwargs)
 

Public Attributes

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

Detailed Description

Definition at line 207 of file config.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 209 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
214 

Member Function Documentation

◆ getWeight()

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

Definition at line 215 of file config.py.

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 
223 

References config.DataComponent.intLumi.

Member Data Documentation

◆ intLumi

config.DataComponent.intLumi

◆ isData

config.DataComponent.isData

Definition at line 211 of file config.py.

◆ json

config.DataComponent.json

Definition at line 213 of file config.py.

HIPAlignmentAlgorithm_cfi.Weight
Weight
Definition: HIPAlignmentAlgorithm_cfi.py:62