CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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.sigma_z_match = cms.untracked.double(3.0)
8 hltMultiPVanalysis.root_folder = cms.untracked.string("HLT/Vertexing/ValidationWRTsim")
9 hltMultiPVanalysis.recoTrackProducer = "hltPixelTracks"
10 hltMultiPVanalysis.vertexRecoCollections = cms.VInputTag(
11  "hltPixelVertices",
12  "hltTrimmedPixelVertices"
13 # "hltFastPVPixelVertices"
14 )
15 
16 hltMultiPVValidation = cms.Sequence(
17  hltMultiPVanalysis
18 )