CMS 3D CMS Logo

globaldigishistogrammer_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 globaldigishistogrammer = DQMEDAnalyzer('GlobalDigisHistogrammer',
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('GlobalDigisHistograms.root'),
9  Name = cms.untracked.string('GlobalDigisHistogrammer'),
10  Verbosity = cms.untracked.int32(0), ## 0 provides no output
11 
12  GlobalDigisSrc = cms.InputTag("globaldigis","GlobalDigis"),
13  # as of 110p2, needs to be 1. Anything ealier should be 0.
14  VtxUnit = cms.untracked.int32(1),
15  Frequency = cms.untracked.int32(50),
16  DoOutput = cms.bool(False),
17  # 1 assumes cm in SimVertex
18  ProvenanceLookup = cms.PSet(
19  PrintProvenanceInfo = cms.untracked.bool(False),
20  GetAllProvenances = cms.untracked.bool(False)
21  )
22 )
23 
24