Skip to content

Commit

Permalink
Merge pull request #8438 from civanch/shiftedBeam
Browse files Browse the repository at this point in the history
Shifted beam spots for HF non-uniformity study
  • Loading branch information
cmsbuild committed Mar 22, 2015
2 parents 4fb0d4c + e9be308 commit 996d2f4
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
22 changes: 22 additions & 0 deletions IOMC/EventVertexGenerators/python/VtxSmearedParameters_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,3 +418,25 @@
Y0 = cms.double(0.0),
Z0 = cms.double(0.0)
)
Shifted5mmCollision2015VtxSmearingParameters = cms.PSet(
Phi = cms.double(0.0),
BetaStar = cms.double(65.0),
Emittance = cms.double(5.411e-08),
Alpha = cms.double(0.0),
SigmaZ = cms.double(5.3),
TimeOffset = cms.double(0.0),
X0 = cms.double(0.5),
Y0 = cms.double(0.0),
Z0 = cms.double(0.0)
)
Shifted15mmCollision2015VtxSmearingParameters = cms.PSet(
Phi = cms.double(0.0),
BetaStar = cms.double(65.0),
Emittance = cms.double(5.411e-08),
Alpha = cms.double(0.0),
SigmaZ = cms.double(5.3),
TimeOffset = cms.double(0.0),
X0 = cms.double(1.5),
Y0 = cms.double(0.0),
Z0 = cms.double(0.0)
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import FWCore.ParameterSet.Config as cms

from IOMC.EventVertexGenerators.VtxSmearedParameters_cfi import *
VtxSmeared = cms.EDProducer("BetafuncEvtVtxGenerator",
Shifted15mmCollision2015VtxSmearingParameters,
VtxSmearedCommon
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import FWCore.ParameterSet.Config as cms

from IOMC.EventVertexGenerators.VtxSmearedParameters_cfi import *
VtxSmeared = cms.EDProducer("BetafuncEvtVtxGenerator",
Shifted5mmCollision2015VtxSmearingParameters,
VtxSmearedCommon
)

0 comments on commit 996d2f4

Please sign in to comment.