CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
globaldigishistogrammer_cfi.py
Go to the documentation of this file.
2 
3 globaldigishistogrammer = cms.EDAnalyzer("GlobalDigisHistogrammer",
4  # 1 provides basic output
5  # 2 provides output of the fill step + 1
6  # 3 provides output of the store step + 2
7  outputFile = cms.string('GlobalDigisHistograms.root'),
8  Name = cms.untracked.string('GlobalDigisHistogrammer'),
9  Verbosity = cms.untracked.int32(0), ## 0 provides no output
10 
11  GlobalDigisSrc = cms.InputTag("globaldigis","GlobalDigis"),
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 )
22 
23