CMS 3D CMS Logo

mcvertexweight_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 mcvertexweight = cms.EDFilter("MCVerticesWeight",
4  pileupSummaryCollection = cms.InputTag("addPileupInfo"),
5  mcTruthCollection = cms.InputTag("generatorSmeared"),
6  weighterConfig = cms.PSet(
7  initSigma = cms.double(6.26),
8  initMean = cms.double(0.4145),
9  finalSigma = cms.double(5.2),
10  useMainVertex = cms.bool(True)
11  )
12  )
13