CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/Validation/GlobalDigis/python/globaldigis_analyze_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 globaldigisanalyze = cms.EDAnalyzer("GlobalDigisAnalyzer",
00004     hitsProducer = cms.string('g4SimHits'),
00005     MuCSCStripSrc = cms.InputTag("simMuonCSCDigis","MuonCSCStripDigi"),
00006     MuDTSrc = cms.InputTag("simMuonDTDigis"),
00007     Name = cms.untracked.string('GlobalDigisAnalyzer'),
00008     SiPxlSrc = cms.InputTag("simSiPixelDigis"),
00009     Verbosity = cms.untracked.int32(0), ## 0 provides no output
00010 
00011     MuCSCWireSrc = cms.InputTag("simMuonCSCDigis","MuonCSCWireDigi"),
00012     ECalEESrc = cms.InputTag("simEcalDigis","eeDigis"),
00013     SiStripSrc = cms.InputTag("simSiStripDigis","ZeroSuppressed"),
00014     # 1 assumes cm in SimVertex
00015     ProvenanceLookup = cms.PSet(
00016         PrintProvenanceInfo = cms.untracked.bool(False),
00017         GetAllProvenances = cms.untracked.bool(False)
00018     ),
00019     HCalSrc = cms.InputTag("g4SimHits","HcalHits"),
00020     # 1 provides basic output
00021     # 2 provides output of the fill step + 1
00022     # 3 provides output of the store step + 2
00023     Frequency = cms.untracked.int32(50),
00024     MuRPCSrc = cms.InputTag("simMuonRPCDigis"),
00025     ECalEBSrc = cms.InputTag("simEcalDigis","ebDigis"),
00026     ECalESSrc = cms.InputTag("simEcalPreshowerDigis"),
00027     # as of 110p2, needs to be 1. Anything ealier should be 0.
00028     VtxUnit = cms.untracked.int32(1),
00029     #InputTag HCalDigi  = simHcalUnsuppressedDigis
00030     HCalDigi = cms.InputTag("simHcalDigis")
00031 )
00032 
00033 
00034