CMS 3D CMS Logo

globalrechitshistogram_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 globalrechitshistogrammer = DQMEDAnalyzer('GlobalRecHitsHistogrammer',
5  # 1 provides basic output
6  # 2 provides output of the fill step + 1
7  # 3 provides output of the store step + 2
8  outputFile = cms.string('GlobalRecHitsHistograms.root'),
9  Name = cms.untracked.string('GlobalRecHitsHistogrammer'),
10  Verbosity = cms.untracked.int32(0), ## 0 provides no output
11 
12  # as of 110p2, needs to be 1. Anything ealier should be 0.
13  VtxUnit = cms.untracked.int32(1),
14  Frequency = cms.untracked.int32(50),
15  DoOutput = cms.bool(False),
16  # 1 assumes cm in SimVertex
17  ProvenanceLookup = cms.PSet(
18  PrintProvenanceInfo = cms.untracked.bool(False),
19  GetAllProvenances = cms.untracked.bool(False)
20  ),
21  GlobalRecHitSrc = cms.InputTag("globalrechits","GlobalRecHits")
22 )
23 
24