Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:38

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(5),
0012     minBunch = cms.int32(-3), ## 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,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),
0025           probValue = cms.vdouble(
0026                                   0,
0027                                   9.31651e-08,
0028                                   1.09346e-06,
0029                                   5.64875e-06,
0030                                   2.361e-05,
0031                                   8.06074e-05,
0032                                   0.000225675,
0033                                   0.000558976,
0034                                   0.00120977,
0035                                   0.00234117,
0036                                   0.00412333,
0037                                   0.00670444,
0038                                   0.0100845,
0039                                   0.0142227,
0040                                   0.0190064,
0041                                   0.0240893,
0042                                   0.0293227,
0043                                   0.0343754,
0044                                   0.0390867,
0045                                   0.043246,
0046                                   0.0468416,
0047                                   0.0497495,
0048                                   0.0519864,
0049                                   0.0534802,
0050                                   0.0542481,
0051                                   0.0541758,
0052                                   0.0533452,
0053                                   0.0517044,
0054                                   0.0492733,
0055                                   0.0461293,
0056                                   0.042412,
0057                                   0.0383111,
0058                                   0.0339056,
0059                                   0.029475,
0060                                   0.0250526,
0061                                   0.0208822,
0062                                   0.0170406,
0063                                   0.0136212,
0064                                   0.0106832,
0065                                   0.00820745,
0066                                   0.00616701,
0067                                   0.00454278,
0068                                   0.00328775,
0069                                   0.00233149,
0070                                   0.00162209,
0071                                   0.0010969,
0072                                   0.000731508,
0073                                   0.000482477,
0074                                   0.000309637,
0075                                   0.000195411
0076                                   ),
0077           histoFileName = cms.untracked.string('histProbFunction.root'),
0078         ),
0079     sequential = cms.untracked.bool(False),
0080         manage_OOT = cms.untracked.bool(True),  ## manage out-of-time pileup
0081         ## setting this to True means that the out-of-time pileup
0082         ## will have a different distribution than in-time, given
0083         ## by what is described on the next line:
0084         OOT_type = cms.untracked.string('Poisson'),  ## generate OOT with a Poisson matching the number chosen for in-time
0085         #OOT_type = cms.untracked.string('fixed'),  ## generate OOT with a fixed distribution
0086         #intFixed_OOT = cms.untracked.int32(2),
0087         fileNames = FileNames
0088     ),
0089     mixObjects = cms.PSet(theMixObjects)
0090 )
0091 
0092 
0093