CMS 3D CMS Logo

PrimaryVertexMonitoring_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4 
5 hltVerticesMonitoring = pvMonitor.clone(
6  beamSpotLabel = "hltOnlineBeamSpot"
7 )
8 hltPixelVerticesMonitoring = hltVerticesMonitoring.clone(
9  TopFolderName = "HLT/Vertexing/hltPixelVertices",
10  vertexLabel = "hltPixelVertices",
11  ndof = 1,
12  useHPforAlignmentPlots = False
13 )
14 hltTrimmedPixelVerticesMonitoring = hltVerticesMonitoring.clone(
15  TopFolderName = "HLT/Vertexing/hltTrimmedPixelVertices",
16  vertexLabel = "hltTrimmedPixelVertices",
17  ndof = 1,
18  useHPforAlignmentPlots = False
19 )
20 hltVerticesPFFilterMonitoring = hltVerticesMonitoring.clone(
21  TopFolderName = "HLT/Vertexing/hltVerticesPFFilter",
22  vertexLabel = "hltVerticesPFFilter",
23  useHPforAlignmentPlots = False
24 )
25 hltVerticesL3PFBjetsMonitoring = hltVerticesMonitoring.clone(
26  TopFolderName = "HLT/Vertexing/hltVerticesL3PFBjets",
27  vertexLabel = "hltVerticesL3PFBjets",
28  useHPforAlignmentPlots = False
29 )
30 vertexingMonitorHLT = cms.Sequence(
31  hltPixelVerticesMonitoring
32  + hltTrimmedPixelVerticesMonitoring
33  + hltVerticesPFFilterMonitoring
34 # + hltVerticesL3PFBjets
35 )
36