CMS 3D CMS Logo

HLTmultiPVvalidator_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 hltMultiPVanalysis = vertexAnalysis.clone()
6 hltMultiPVanalysis.verbose = cms.untracked.bool(False)
7 hltMultiPVanalysis.root_folder = cms.untracked.string("HLT/Vertexing/ValidationWRTsim")
8 hltMultiPVanalysis.vertexRecoCollections = cms.VInputTag(
9  "hltPixelVertices",
10  "hltTrimmedPixelVertices"
11 # "hltFastPVPixelVertices"
12 )
13 
14 hltMultiPVValidation = cms.Sequence(
15  hltMultiPVanalysis
16 )