CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/SimGeneral/MixingModule/python/mixLowLumPU_mixProdStep1_cfi.py

Go to the documentation of this file.
00001 # The following comments couldn't be translated into the new config version:
00002 
00003 # E33 cm-2s-1
00004 # mb
00005 import FWCore.ParameterSet.Config as cms
00006 
00007 # this is the configuration to model pileup in the low-luminosity phase
00008 from SimGeneral.MixingModule.mixObjects_cfi import * 
00009 from SimGeneral.MixingModule.mixPoolSource_cfi import * 
00010 
00011 mix = cms.EDProducer("MixingModule",
00012     LabelPlayback = cms.string(''),
00013     maxBunch = cms.int32(3),
00014     minBunch = cms.int32(-5), ## in terms of 25 ns
00015 
00016     bunchspace = cms.int32(25), ## nsec
00017     mixProdStep1 = cms.bool(True),
00018     mixProdStep2 = cms.bool(False),
00019 
00020     playback = cms.untracked.bool(False),
00021     useCurrentProcessOnly = cms.bool(False),
00022                    
00023     input = cms.SecSource("PoolSource",
00024         nbPileupEvents = cms.PSet(
00025             sigmaInel = cms.double(80.0),
00026             Lumi = cms.double(2.8)
00027         ),
00028         type = cms.string('poisson'),
00029         sequential = cms.untracked.bool(False),
00030         fileNames = FileNames 
00031     ),
00032     mixObjects = cms.PSet(
00033         mixCH = cms.PSet(
00034             mixCaloHits
00035         ),
00036         mixTracks = cms.PSet(
00037             mixSimTracks
00038         ),
00039         mixVertices = cms.PSet(
00040             mixSimVertices
00041         ),
00042         mixSH = cms.PSet(
00043             mixSimHits
00044         ),
00045         mixHepMC = cms.PSet(
00046             mixHepMCProducts
00047         )
00048     )
00049 )
00050 
00051