Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 globalrechitshistogrammer = DQMEDAnalyzer('GlobalRecHitsHistogrammer',
0005     # 1 provides basic output
0006     # 2 provides output of the fill step + 1
0007     # 3 provides output of the store step + 2
0008     outputFile = cms.string('GlobalRecHitsHistograms.root'),
0009     Name = cms.untracked.string('GlobalRecHitsHistogrammer'),
0010     Verbosity = cms.untracked.int32(0), ## 0 provides no output
0011 
0012     # as of 110p2, needs to be 1. Anything ealier should be 0.
0013     VtxUnit = cms.untracked.int32(1),
0014     Frequency = cms.untracked.int32(50),
0015     DoOutput = cms.bool(False),
0016     # 1 assumes cm in SimVertex
0017     ProvenanceLookup = cms.PSet(
0018         PrintProvenanceInfo = cms.untracked.bool(False),
0019         GetAllProvenances = cms.untracked.bool(False)
0020     ),
0021     GlobalRecHitSrc = cms.InputTag("globalrechits","GlobalRecHits")
0022 )
0023 
0024