CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/Validation/GlobalHits/python/globalhits_prodhiststrip_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 globalhitprodhiststrip = cms.EDAnalyzer("GlobalHitsProdHistStripper",
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     Verbosity = cms.untracked.int32(0), ## 0 provides no output
00010 
00011     # as of 110p2, needs to be 1. Anything ealier should be 0.
00012     VtxUnit = cms.untracked.int32(1),
00013     Frequency = cms.untracked.int32(1),
00014     DoOutput = cms.bool(False),
00015     # 1 assumes cm in SimVertex
00016     ProvenanceLookup = cms.PSet(
00017         PrintProvenanceInfo = cms.untracked.bool(False),
00018         GetAllProvenances = cms.untracked.bool(False)
00019     )
00020 )
00021 
00022