CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
mix_flat_0_10_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # configuration to model pileup for initial physics phase
4 from SimGeneral.MixingModule.mixObjects_cfi import theMixObjects
7 
8 mix = cms.EDProducer("MixingModule",
9  digitizers = cms.PSet(theDigitizers),
10  LabelPlayback = cms.string(''),
11  maxBunch = cms.int32(2),
12  minBunch = cms.int32(-12), ## in terms of 25 nsec
13 
14  bunchspace = cms.int32(50), ##ns
15  mixProdStep1 = cms.bool(False),
16  mixProdStep2 = cms.bool(False),
17 
18  playback = cms.untracked.bool(False),
19  useCurrentProcessOnly = cms.bool(False),
20 
21  input = cms.SecSource("EmbeddedRootSource",
22  type = cms.string('probFunction'),
23  nbPileupEvents = cms.PSet(
24  probFunctionVariable = cms.vint32(0,1,2,3,4,5,6,7,8,9,10),
25  probValue = cms.vdouble(
26  0.0909090909,
27  0.0909090909,
28  0.0909090909,
29  0.0909090909,
30  0.0909090909,
31  0.0909090909,
32  0.0909090909,
33  0.0909090909,
34  0.0909090909,
35  0.0909090909,
36  0.0909090909),
37  histoFileName = cms.untracked.string('histProbFunction.root'),
38  ),
39  sequential = cms.untracked.bool(False),
40  manage_OOT = cms.untracked.bool(True), ## manage out-of-time pileup
41  ## setting this to True means that the out-of-time pileup
42  ## will have a different distribution than in-time, given
43  ## by what is described on the next line:
44  OOT_type = cms.untracked.string('Poisson'), ## generate OOT with a Poisson matching the number chosen for in-time
45  #OOT_type = cms.untracked.string('fixed'), ## generate OOT with a fixed distribution
46  #intFixed_OOT = cms.untracked.int32(2),
47  fileNames = FileNames
48  ),
49  mixObjects = cms.PSet(theMixObjects)
50 )