CMS 3D CMS Logo

globalhits_histogram_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 globalhithistogram = cms.EDAnalyzer("GlobalHitsHistogrammer",
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('GlobalHitsHistograms.root'),
8  Name = cms.untracked.string('GlobalHitsHistogrammer'),
9  GlobalHitSrc = cms.InputTag("globalhits","GlobalHits"),
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 )
22 
23