Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # E33 cm-2s-1
0004 # mb
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 # configuration to model pileup for initial physics phase
0008 from SimGeneral.MixingModule.mixObjects_cfi import theMixObjects
0009 from SimGeneral.MixingModule.mixPoolSource_cfi import *
0010 from SimGeneral.MixingModule.digitizers_cfi import *
0011 
0012 mix = cms.EDProducer("MixingModule",
0013     digitizers = cms.PSet(theDigitizers),
0014     LabelPlayback = cms.string(''),
0015     maxBunch = cms.int32(3),
0016     minBunch = cms.int32(-5), ## in terms of 25 nsec
0017 
0018     bunchspace = cms.int32(75), ##ns
0019     mixProdStep1 = cms.bool(False),
0020     mixProdStep2 = cms.bool(False),
0021 
0022     playback = cms.untracked.bool(False),
0023     useCurrentProcessOnly = cms.bool(False),
0024 
0025     input = cms.SecSource("EmbeddedRootSource",
0026         nbPileupEvents = cms.PSet(
0027             sigmaInel = cms.double(80.0),
0028             Lumi = cms.double(0.5)
0029         ),
0030         type = cms.string('poisson'),
0031     sequential = cms.untracked.bool(False),
0032         fileNames = FileNames
0033     ),
0034     mixObjects = cms.PSet(theMixObjects)
0035 )
0036 
0037