CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/Validation/GlobalRecHits/python/globalrechits_analyze_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 globalrechitsanalyze = cms.EDAnalyzer("GlobalRecHitsAnalyzer",
00004     MuDTSrc = cms.InputTag("dt1DRecHits"),
00005     SiPxlSrc = cms.InputTag("siPixelRecHits"),
00006     # as of 110p2, needs to be 1. Anything ealier should be 0.
00007     VtxUnit = cms.untracked.int32(1),
00008     associateRecoTracks = cms.bool(False),
00009     MuDTSimSrc = cms.InputTag("g4SimHits","MuonDTHits"),
00010     # needed for TrackerHitAssociator
00011     associatePixel = cms.bool(True),
00012     ROUList = cms.vstring('g4SimHitsTrackerHitsTIBLowTof', 
00013         'g4SimHitsTrackerHitsTIBHighTof', 
00014         'g4SimHitsTrackerHitsTIDLowTof', 
00015         'g4SimHitsTrackerHitsTIDHighTof', 
00016         'g4SimHitsTrackerHitsTOBLowTof', 
00017         'g4SimHitsTrackerHitsTOBHighTof', 
00018         'g4SimHitsTrackerHitsTECLowTof', 
00019         'g4SimHitsTrackerHitsTECHighTof', 
00020         'g4SimHitsTrackerHitsPixelBarrelLowTof', 
00021         'g4SimHitsTrackerHitsPixelBarrelHighTof', 
00022         'g4SimHitsTrackerHitsPixelEndcapLowTof', 
00023         'g4SimHitsTrackerHitsPixelEndcapHighTof'),
00024     ECalEESrc = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
00025     MuRPCSimSrc = cms.InputTag("g4SimHits","MuonRPCHits"),
00026     SiStripSrc = cms.InputTag("siStripMatchedRecHits","matchedRecHit"),
00027     HCalSrc = cms.InputTag("g4SimHits","HcalHits"),
00028     ECalESSrc = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
00029     hitsProducer = cms.string('g4SimHits'),
00030     ECalUncalEESrc = cms.InputTag("ecalWeightUncalibRecHit","EcalUncalibRecHitsEE"),
00031     Name = cms.untracked.string('GlobalRecHitsAnalyzer'),
00032     Verbosity = cms.untracked.int32(0), ## 0 provides no output
00033 
00034     associateStrip = cms.bool(True),
00035     MuRPCSrc = cms.InputTag("rpcRecHits"),
00036     ECalUncalEBSrc = cms.InputTag("ecalWeightUncalibRecHit","EcalUncalibRecHitsEB"),
00037     MuCSCSrc = cms.InputTag("csc2DRecHits"),
00038     # 1 assumes cm in SimVertex
00039     ProvenanceLookup = cms.PSet(
00040         PrintProvenanceInfo = cms.untracked.bool(False),
00041         GetAllProvenances = cms.untracked.bool(False)
00042     ),
00043     # 1 provides basic output
00044     # 2 provides output of the fill step + 1
00045     # 3 provides output of the store step + 2
00046     Frequency = cms.untracked.int32(50),
00047     ECalEBSrc = cms.InputTag("ecalRecHit","EcalRecHitsEB")
00048 )
00049 
00050 
00051