From da8927c2ba4894cdcb479ee54b4e5ff4ca9176c7 Mon Sep 17 00:00:00 2001 From: Emilia Lubenova Becheva Date: Fri, 2 Oct 2009 16:24:20 +0000 Subject: [PATCH] --- yaml --- r: 74623 b: "refs/heads/CMSSW_7_1_X" c: a67b4a44cfac7596e7238e9b6f1da03333f77290 h: "refs/heads/CMSSW_7_1_X" i: 74621: 69b07cc5877db6127a73bd2bfc81aa585c795683 74619: 8ac629f700933b3ea81fbf9ab35f69b2337d7a51 74615: 52ba0737af9d841bc6c69ab0a62656a13767e23d 74607: 1b10b88871ca5403a04785c7c526834ccfc7e27a 74591: 12f2af822becbd2da03e50c6523ac0df5364aea9 74559: 4a9ebf81032cd81e00d20dedbe4d80c3176a965b 74495: 780b5aaa03869bccf4668b98e145c7c8a592f1a7 v: v3 --- [refs] | 2 +- .../python/mixHighLumPU_mixProdStep1_cfi.py | 56 +++++++++++++++++++ 2 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 trunk/SimGeneral/MixingModule/python/mixHighLumPU_mixProdStep1_cfi.py diff --git a/[refs] b/[refs] index a79f2827de8eb..463922bcefe0b 100644 --- a/[refs] +++ b/[refs] @@ -1,3 +1,3 @@ --- refs/heads/gh-pages: 09c786f70121f131b3715aaf3464996502bbeb7e -"refs/heads/CMSSW_7_1_X": 89388007622dcbc9c59e5772c012b95b0a46094d +"refs/heads/CMSSW_7_1_X": a67b4a44cfac7596e7238e9b6f1da03333f77290 diff --git a/trunk/SimGeneral/MixingModule/python/mixHighLumPU_mixProdStep1_cfi.py b/trunk/SimGeneral/MixingModule/python/mixHighLumPU_mixProdStep1_cfi.py new file mode 100644 index 0000000000000..11e450d652d5f --- /dev/null +++ b/trunk/SimGeneral/MixingModule/python/mixHighLumPU_mixProdStep1_cfi.py @@ -0,0 +1,56 @@ +# The following comments couldn't be translated into the new config version: + +# E33 cm-2s-1 +# mb +import FWCore.ParameterSet.Config as cms + +# this is the configuration to model pileup in the low-luminosity phase +from SimGeneral.MixingModule.mixObjects_cfi import * +mix = cms.EDProducer("MixingModule", + LabelPlayback = cms.string(''), + maxBunch = cms.int32(3), + minBunch = cms.int32(-5), ## in terms of 25 ns + + bunchspace = cms.int32(25), ## nsec + mixProdStep1 = cms.bool(True), + mixProdStep2 = cms.bool(False), + + playback = cms.untracked.bool(False), + useCurrentProcessOnly = cms.bool(False), + + input = cms.SecSource("PoolSource", + nbPileupEvents = cms.PSet( + sigmaInel = cms.double(80.0), + Lumi = cms.double(10.0) + ), + seed = cms.int32(1234567), + type = cms.string('poisson'), + sequential = cms.untracked.bool(False), + fileNames = cms.untracked.vstring( + '/store/relval/CMSSW_3_1_0_pre11/RelValMinBias/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V1-v1/0000/ECDB1818-A964-DE11-9B4B-001D09F24934.root', + '/store/relval/CMSSW_3_1_0_pre11/RelValMinBias/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V1-v1/0000/D245A5BB-4C64-DE11-9F79-001D09F248F8.root', + '/store/relval/CMSSW_3_1_0_pre11/RelValMinBias/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V1-v1/0000/C65577F4-EC64-DE11-8D4A-001D09F251CC.root', + '/store/relval/CMSSW_3_1_0_pre11/RelValMinBias/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V1-v1/0000/965505C4-9264-DE11-A3BC-001D09F232B9.root', + '/store/relval/CMSSW_3_1_0_pre11/RelValMinBias/GEN-SIM-DIGI-RAW-HLTDEBUG/MC_31X_V1-v1/0000/5E309A39-7264-DE11-978E-001D09F2A690.root' + ) + ), + mixObjects = cms.PSet( + mixCH = cms.PSet( + mixCaloHits + ), + mixTracks = cms.PSet( + mixSimTracks + ), + mixVertices = cms.PSet( + mixSimVertices + ), + mixSH = cms.PSet( + mixSimHits + ), + mixHepMC = cms.PSet( + mixHepMCProducts + ) + ) +) + +