Skip to content

Commit

Permalink
new scenario for Run 3 with flat distribution from 55 to 75
Browse files Browse the repository at this point in the history
  • Loading branch information
plujan committed May 23, 2019
1 parent b7731d0 commit f735efe
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions Configuration/StandardSequences/python/Mixing.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def addMixingScenario(label,dict):
addMixingScenario("2017_25ns_WinterMC_PUScenarioV1_PoissonOOTPU",{'file': 'SimGeneral.MixingModule.mix_2017_25ns_WinterMC_PUScenarioV1_PoissonOOTPU_cfi'})
addMixingScenario("2018_25ns_ProjectedPileup_PoissonOOTPU",{'file': 'SimGeneral.MixingModule.mix_2018_25ns_ProjectedPileup_PoissonOOTPU_cfi'})
addMixingScenario("2018_25ns_JuneProjectionFull18_PoissonOOTPU",{'file': 'SimGeneral.MixingModule.mix_2018_25ns_JuneProjectionFull18_PoissonOOTPU_cfi'})
addMixingScenario("Run3_Flat55To75_PoissonOOTPU",{'file': 'SimGeneral.MixingModule.mix_Run3_Flat55To75_PoissonOOTPU_cfi'})
addMixingScenario("ProdStep2",{'file': 'SimGeneral.MixingModule.mixProdStep2_cfi'})
addMixingScenario("fromDB",{'file': 'SimGeneral.MixingModule.mix_fromDB_cfi'})

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# A simple distribution for Run3 studies consisting of a flat distribution from 55
# to 75 for the average pileup.

import FWCore.ParameterSet.Config as cms
from SimGeneral.MixingModule.mix_probFunction_25ns_PoissonOOTPU_cfi import *
mix.input.nbPileupEvents.probFunctionVariable = cms.vint32(
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75
)

mix.input.nbPileupEvents.probValue = cms.vdouble(
0.047619047619, 0.047619047619, 0.047619047619, 0.047619047619, 0.047619047619,
0.047619047619, 0.047619047619, 0.047619047619, 0.047619047619, 0.047619047619,
0.047619047619, 0.047619047619, 0.047619047619, 0.047619047619, 0.047619047619,
0.047619047619, 0.047619047619, 0.047619047619, 0.047619047619, 0.047619047619,
0.047619047619
)

0 comments on commit f735efe

Please sign in to comment.