CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
globalrechitshistogram_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 globalrechitshistogrammer = cms.EDAnalyzer("GlobalRecHitsHistogrammer",
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('GlobalRecHitsHistograms.root'),
8  Name = cms.untracked.string('GlobalRecHitsHistogrammer'),
9  Verbosity = cms.untracked.int32(0), ## 0 provides no output
10 
11  # as of 110p2, needs to be 1. Anything ealier should be 0.
12  VtxUnit = cms.untracked.int32(1),
13  Frequency = cms.untracked.int32(50),
14  DoOutput = cms.bool(False),
15  # 1 assumes cm in SimVertex
16  ProvenanceLookup = cms.PSet(
17  PrintProvenanceInfo = cms.untracked.bool(False),
18  GetAllProvenances = cms.untracked.bool(False)
19  ),
20  GlobalRecHitSrc = cms.InputTag("globalrechits","GlobalRecHits")
21 )
22 
23