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 # this is the configuration to model pileup in StageA with 156x156 bunchcrossings
0008 from SimGeneral.MixingModule.mixObjects_cfi import *
0009 mix = cms.EDProducer("MixingModule",
0010     LabelPlayback = cms.string(''),
0011     maxBunch = cms.int32(3),
0012     minBunch = cms.int32(-5), ## in terms of 25 nsec
0013 
0014     bunchspace = cms.int32(450), ## ns
0015     
0016     mixProdStep1 = cms.bool(False),
0017     mixProdStep2 = cms.bool(False),
0018         
0019     playback = cms.untracked.bool(False),
0020     input = cms.SecSource("EmbeddedRootSource",
0021         nbPileupEvents = cms.PSet(
0022             sigmaInel = cms.double(80.0),
0023             Lumi = cms.double(0.1615)
0024         ),
0025         type = cms.string('poisson'),
0026     sequential = cms.untracked.bool(False),
0027         fileNames = cms.untracked.vstring('/store/relval/2008/4/9/RelVal-RelValMinBias-1207754630/0002/00233C31-5806-DD11-9DDC-001617DBD5B2.root', 
0028             '/store/relval/2008/4/9/RelVal-RelValMinBias-1207754630/0002/3469E801-5C06-DD11-93DC-00304885AE42.root', 
0029             '/store/relval/2008/4/9/RelVal-RelValMinBias-1207754630/0002/52B1C4F8-5406-DD11-8031-00304885B130.root', 
0030             '/store/relval/2008/4/9/RelVal-RelValMinBias-1207754630/0002/6012E6A6-6106-DD11-B9C6-003048562890.root', 
0031             '/store/relval/2008/4/9/RelVal-RelValMinBias-1207754630/0002/66D7FE91-5606-DD11-A3C7-00304885A74E.root', 
0032             '/store/relval/2008/4/9/RelVal-RelValMinBias-1207754630/0002/B6CDB304-5706-DD11-B9E4-001617C3B76E.root', 
0033             '/store/relval/2008/4/9/RelVal-RelValMinBias-1207754630/0002/DC900058-5506-DD11-96DD-000423D98AF0.root', 
0034             '/store/relval/2008/4/9/RelVal-RelValMinBias-1207754630/0002/F80E6D8B-5706-DD11-B8A9-001617C3B76E.root')
0035     ),
0036     mixObjects = cms.PSet(
0037         mixCH = cms.PSet(
0038             mixCaloHits
0039         ),
0040         mixTracks = cms.PSet(
0041             mixSimTracks
0042         ),
0043         mixVertices = cms.PSet(
0044             mixSimVertices
0045         ),
0046         mixSH = cms.PSet(
0047             mixSimHits
0048         ),
0049         mixHepMC = cms.PSet(
0050             mixHepMCProducts
0051         )
0052     )
0053 )
0054 
0055