-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Read VertexSmearing from GT in Run-1/2/3 MC
- Loading branch information
1 parent
7d99d30
commit f88656d
Showing
4 changed files
with
38 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# Load GaussEvtVtx Generator and read parameters from GT (SimBeamSpotObjectRcd) | ||
from IOMC.EventVertexGenerators.VtxSmearedParameters_cfi import VtxSmearedCommon | ||
VtxSmeared = cms.EDProducer("GaussEvtVtxGenerator", | ||
VtxSmearedCommon | ||
) | ||
VtxSmeared.readDB = True | ||
|
||
|
||
|
11 changes: 11 additions & 0 deletions
11
IOMC/EventVertexGenerators/python/VtxSmearedRealistic_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# Load BetafuncEvtVtx Generator and read parameters from GT (SimBeamSpotObjectRcd) | ||
from IOMC.EventVertexGenerators.VtxSmearedParameters_cfi import VtxSmearedCommon | ||
VtxSmeared = cms.EDProducer("BetafuncEvtVtxGenerator", | ||
VtxSmearedCommon | ||
) | ||
VtxSmeared.readDB = True | ||
|
||
|
||
|