CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/Validation/GlobalHits/python/globalhits_histogram_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 globalhithistogram = cms.EDAnalyzer("GlobalHitsHistogrammer",
00004     # 1 provides basic output
00005     # 2 provides output of the fill step + 1
00006     # 3 provides output of the store step + 2
00007     OutputFile = cms.string('GlobalHitsHistograms.root'),
00008     Name = cms.untracked.string('GlobalHitsHistogrammer'),
00009     GlobalHitSrc = cms.InputTag("GlobalHits","GlobalHits"),
00010     Verbosity = cms.untracked.int32(0), ## 0 provides no output
00011 
00012     # as of 110p2, needs to be 1. Anything ealier should be 0.
00013     VtxUnit = cms.untracked.int32(1),
00014     Frequency = cms.untracked.int32(50),
00015     DoOutput = cms.bool(False),
00016     # 1 assumes cm in SimVertex
00017     ProvenanceLookup = cms.PSet(
00018         PrintProvenanceInfo = cms.untracked.bool(False),
00019         GetAllProvenances = cms.untracked.bool(False)
00020     )
00021 )
00022 
00023