Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:02

0001 import FWCore.ParameterSet.Config as cms
0002 from RecoMuon.TrackingTools.MuonServiceProxy_cff import *
0003 
0004 MuonShowerParameters = cms.PSet(
0005     MuonShowerInformationFillerParameters = cms.PSet(
0006       MuonServiceProxy,
0007     
0008       DTRecSegmentLabel = cms.InputTag("dt1DRecHits"),
0009       CSCRecSegmentLabel = cms.InputTag("csc2DRecHits"),
0010       RPCRecSegmentLabel = cms.InputTag("rpcRecHits"),
0011       DT4DRecSegmentLabel = cms.InputTag("dt4DSegments"),
0012       CSCSegmentLabel = cms.InputTag("cscSegments"),
0013 
0014       TrackerRecHitBuilder = cms.string('WithTrackAngle'),
0015       MuonRecHitBuilder = cms.string('MuonRecHitBuilder'),
0016     
0017    )
0018 )