CMS 3D CMS Logo

globalhits_histogram_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 globalhithistogram = DQMEDAnalyzer('GlobalHitsHistogrammer',
5  # 1 provides basic output
6  # 2 provides output of the fill step + 1
7  # 3 provides output of the store step + 2
8  OutputFile = cms.string('GlobalHitsHistograms.root'),
9  Name = cms.untracked.string('GlobalHitsHistogrammer'),
10  GlobalHitSrc = cms.InputTag("globalhits","GlobalHits"),
11  Verbosity = cms.untracked.int32(0), ## 0 provides no output
12 
13  # as of 110p2, needs to be 1. Anything ealier should be 0.
14  VtxUnit = cms.untracked.int32(1),
15  Frequency = cms.untracked.int32(50),
16  DoOutput = cms.bool(False),
17  # 1 assumes cm in SimVertex
18  ProvenanceLookup = cms.PSet(
19  PrintProvenanceInfo = cms.untracked.bool(False),
20  GetAllProvenances = cms.untracked.bool(False)
21  )
22 )
23 
24