test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PrimaryVertexMonitor_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 pvMonitor = cms.EDAnalyzer("PrimaryVertexMonitor",
5  TopFolderName = cms.string("OfflinePV"),
6  AlignmentLabel = cms.string("Alignment"),
7  vertexLabel = cms.InputTag("offlinePrimaryVertices"),
8  beamSpotLabel = cms.InputTag("offlineBeamSpot"),
9  TkSizeBin = cms.int32( 100 ),
10  TkSizeMax = cms.double(499.5),
11  TkSizeMin = cms.double( -0.5),
12  Xpos = cms.double(0.1),
13  Ypos = cms.double(0.1),
14  DxyBin = cms.int32(100),
15  DxyMax = cms.double(0.5),
16  DxyMin = cms.double(-0.5),
17  DzBin = cms.int32(100),
18  DzMax = cms.double(2.0),
19  DzMin = cms.double(-2.0),
20  PhiBin = cms.int32(32),
21  PhiMax = cms.double(3.141592654),
22  PhiMin = cms.double(-3.141592654),
23  EtaBin = cms.int32(26),
24  EtaMax = cms.double(2.5),
25  EtaMin = cms.double(-2.5)
26 )