CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions | Variables
Mixing Namespace Reference

Functions

def addMixingScenario
 
def defineMixing
 
def printMe
 

Variables

dictionary Mixing = {}
 
string MixingDefaultKey = '2012_Summer_50ns_PoissonOOTPU'
 full sim section More...
 
string MixingFSDefaultKey = '2012_Summer_inTimeOnly'
 

Function Documentation

def Mixing.addMixingScenario (   label,
  dict 
)

Definition at line 4 of file Mixing.py.

4 
5 def addMixingScenario(label,dict):
6  global Mixing
7  if label in Mixing:
8  print 'duplicated definition of',label
9  else:
10  #try:
11  # m=__import__(dict['file'])
12  #except:
13  # raise Exception('no file'+dict['file']+'to be loaded')
14  Mixing[label]=dict
def addMixingScenario
Definition: Mixing.py:4
def Mixing.defineMixing (   dict,
  FS = False 
)

Definition at line 183 of file Mixing.py.

184 def defineMixing(dict,FS=False):
185  commands=[]
186  if 'N' in dict:
187  if FS:
188  commands.append('process.famosPileUp.PileUpSimulator.averageNumber = cms.double(%f)'%(dict['N'],))
189  else:
190  commands.append('process.mix.input.nbPileupEvents.averageNumber = cms.double(%f)'%(dict['N'],))
191  dict.pop('N')
192  if 'BX' in dict:
193  commands.append('process.mix.bunchspace = cms.int32(%d)'%(dict['BX'],))
194  dict.pop('BX')
195  if 'B' in dict:
196  commands.append('process.mix.minBunch = cms.int32(%d)'%(dict['B'][0],))
197  commands.append('process.mix.maxBunch = cms.int32(%d)'%(dict['B'][1],))
198  dict.pop('B')
199  if 'F' in dict:
200  commands.append('process.mix.input.fileNames = cms.untracked.vstring(%s)'%(repr(dict['F'])))
201  dict.pop('F')
202  return commands
def defineMixing
Definition: Mixing.py:183
def Mixing.printMe ( )

Definition at line 168 of file Mixing.py.

169 def printMe():
170  global Mixing
171  keys = Mixing.keys()
172  keys.sort()
173  fskeys=[]
174  for key in keys:
175  if '_FS' in key:
176  fskeys.append(key)
177  else:
178  print 'addMixingScenario("%s",%s)'%(key,repr(Mixing[key]))
179 
180  for key in fskeys:
181  print 'addMixingScenario("%s",%s)'%(key,repr(Mixing[key]))
182 
def printMe
Definition: Mixing.py:168

Variable Documentation

dictionary Mixing.Mixing = {}

Definition at line 1 of file Mixing.py.

string Mixing.MixingDefaultKey = '2012_Summer_50ns_PoissonOOTPU'

full sim section

fastsim section

Definition at line 165 of file Mixing.py.

string Mixing.MixingFSDefaultKey = '2012_Summer_inTimeOnly'

Definition at line 166 of file Mixing.py.