CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/Validation/MuonHits/python/muonHitsValidation_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # SimHits Validation Analyzer after Simulation
00004 validSimHit = cms.EDAnalyzer("MuonSimHitsValidAnalyzer",
00005     # Name of the root file which will contain the histos
00006     DT_outputFile = cms.untracked.string(''),
00007     Name = cms.untracked.string('MuonSimHitsValidAnalyzer'),
00008     RPCHitsSrc = cms.InputTag("g4SimHits","MuonRPCHits"),
00009     Verbosity = cms.untracked.int32(0), 
00010     ProvenanceLookup = cms.PSet(
00011         PrintProvenanceInfo = cms.untracked.bool(False),
00012         GetAllProvenances = cms.untracked.bool(False)
00013     ),
00014     DTHitsSrc = cms.InputTag("g4SimHits","MuonDTHits"),
00015     CSCHitsSrc = cms.InputTag("g4SimHits","MuonCSCHits"),
00016     Label = cms.string('Hits')
00017 )
00018 
00019