Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:21

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 globalhitprodhiststrip = cms.EDAnalyzer("GlobalHitsProdHistStripper",
0004     # 1 provides basic output
0005     # 2 provides output of the fill step + 1
0006     # 3 provides output of the store step + 2
0007     OutputFile = cms.string('GlobalHitsHistograms.root'),
0008     Name = cms.untracked.string('GlobalHitsHistogrammer'),
0009     Verbosity = cms.untracked.int32(0), ## 0 provides no output
0010 
0011     # as of 110p2, needs to be 1. Anything ealier should be 0.
0012     VtxUnit = cms.untracked.int32(1),
0013     Frequency = cms.untracked.int32(1),
0014     DoOutput = cms.bool(False),
0015     # 1 assumes cm in SimVertex
0016     ProvenanceLookup = cms.PSet(
0017         PrintProvenanceInfo = cms.untracked.bool(False),
0018         GetAllProvenances = cms.untracked.bool(False)
0019     )
0020 )
0021 
0022