Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:25:13

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # configuration to model pileup for initial physics phase
0004 from SimGeneral.MixingModule.mixObjects_cfi import theMixObjects
0005 from SimGeneral.MixingModule.mixPoolSource_cfi import *
0006 from SimGeneral.MixingModule.digitizers_cfi import *
0007 
0008 mix = cms.EDProducer("MixingModule",
0009     digitizers = cms.PSet(theDigitizers),
0010     LabelPlayback = cms.string(''),
0011     maxBunch = cms.int32(4),
0012     minBunch = cms.int32(-4), ## in terms of 25 nsec
0013 
0014     bunchspace = cms.int32(25), ##ns
0015     mixProdStep1 = cms.bool(False),
0016     mixProdStep2 = cms.bool(False),
0017 
0018     playback = cms.untracked.bool(False),
0019     useCurrentProcessOnly = cms.bool(False),
0020 
0021     input = cms.SecSource("EmbeddedRootSource",
0022         type = cms.string('probFunction'),
0023         nbPileupEvents = cms.PSet(
0024           probFunctionVariable = cms.vint32(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20),
0025           probValue = cms.vdouble(
0026                                  0,
0027                                  2.22222e-08,
0028                                  5.11111e-07,
0029                                  3.51556e-05,
0030                                  0.000966,
0031                                  0.0105225,
0032                                  0.0496596,
0033                                  0.115995,
0034                                  0.169019,
0035                                  0.19745,
0036                                  0.204278,
0037                                  0.160526,
0038                                  0.0737906,
0039                                  0.0161852,
0040                                  0.001516,
0041                                  5.54667e-05,
0042                                  7.77778e-07,
0043                                  0,
0044                                  0,
0045                                  0,
0046                                  0
0047                                  ),
0048           histoFileName = cms.untracked.string('histProbFunction.root'),
0049         ),
0050     sequential = cms.untracked.bool(False),
0051         manage_OOT = cms.untracked.bool(True),  ## manage out-of-time pileup
0052         ## setting this to True means that the out-of-time pileup
0053         ## will have a different distribution than in-time, given
0054         ## by what is described on the next line:
0055         OOT_type = cms.untracked.string('Poisson'),  ## generate OOT with a Poisson matching the number chosen for in-time
0056         #OOT_type = cms.untracked.string('fixed'),  ## generate OOT with a fixed distribution
0057         #intFixed_OOT = cms.untracked.int32(2),
0058         fileNames = FileNames
0059     ),
0060     mixObjects = cms.PSet(theMixObjects)
0061 )
0062 
0063 
0064