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 # this is a minimum configuration of the Mixing module,
0004 # to run it in the zero-pileup mode
0005 #
0006 from SimGeneral.MixingModule.mixObjects_cfi import theMixObjects
0007 from SimGeneral.MixingModule.mixPoolSource_cfi import *
0008 from SimGeneral.MixingModule.digitizersCosmics_cfi import *
0009 
0010 mix = cms.EDProducer("MixingModule",
0011     digitizers = cms.PSet(theDigitizers),
0012     LabelPlayback = cms.string(''),
0013     maxBunch = cms.int32(3),
0014     minBunch = cms.int32(-5), ## in terms of 25 ns
0015 
0016     bunchspace = cms.int32(25),
0017     mixProdStep1 = cms.bool(False),
0018     mixProdStep2 = cms.bool(False),
0019 
0020     playback = cms.untracked.bool(False),
0021     useCurrentProcessOnly = cms.bool(False),
0022     mixObjects = cms.PSet(theMixObjects)
0023 )
0024 
0025 
0026