CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
mix_CSA14_50ns_PoissonOOTPU_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,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50),
25  probValue = cms.vdouble(
26  0,
27  0,
28  0,
29  0,
30  0,
31  0,
32  0,
33  0,
34  0,
35  0,
36  0,
37  0,
38  0,
39  0,
40  0,
41  0,
42  0,
43  0,
44  0,
45  0,
46  0.016666667,
47  0.016666667,
48  0.016666667,
49  0.016666667,
50  0.016666667,
51  0.016666667,
52  0.016666667,
53  0.016666667,
54  0.016666667,
55  0.016666667,
56  0.016666667,
57  0.016666667,
58  0.016666667,
59  0.016666667,
60  0.016666667,
61  0.016666667,
62  0.016666667,
63  0.016666667,
64  0.016666667,
65  0.016666667,
66  0.5,
67  0.016666667,
68  0.016666667,
69  0.016666667,
70  0.016666667,
71  0.016666667,
72  0.016666667,
73  0.016666667,
74  0.016666667,
75  0.016666667,
76  0.016666667
77  ),
78  histoFileName = cms.untracked.string('histProbFunction.root'),
79  ),
80  sequential = cms.untracked.bool(False),
81  manage_OOT = cms.untracked.bool(True), ## manage out-of-time pileup
82  ## setting this to True means that the out-of-time pileup
83  ## will have a different distribution than in-time, given
84  ## by what is described on the next line:
85  OOT_type = cms.untracked.string('Poisson'), ## generate OOT with a Poisson matching the number chosen for in-time
86  #OOT_type = cms.untracked.string('fixed'), ## generate OOT with a fixed distribution
87  #intFixed_OOT = cms.untracked.int32(2),
88  fileNames = FileNames
89  ),
90  mixObjects = cms.PSet(theMixObjects)
91 )
92 
93 
94