Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:33:34

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 mcvertexweight = cms.EDFilter("MCVerticesWeight",
0004                               pileupSummaryCollection = cms.InputTag("addPileupInfo"),
0005                               mcTruthCollection = cms.InputTag("generatorSmeared"),
0006                               weighterConfig = cms.PSet(
0007     initSigma = cms.double(6.26),
0008     initMean = cms.double(0.4145),
0009     finalSigma = cms.double(5.2),
0010     useMainVertex = cms.bool(True)
0011     )
0012                               )
0013