CMS 3D CMS Logo

MuonSegmentMatcher_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 MuonSegmentMatcher = cms.PSet(
4  MatchParameters = cms.PSet(
5  DTsegments = cms.InputTag("dt4DSegments"),
6  DTradius = cms.double(0.01),
7  CSCsegments = cms.InputTag("cscSegments"),
8  RPChits = cms.InputTag("rpcRecHits"),
9  TightMatchDT = cms.bool(False),
10  TightMatchCSC = cms.bool(True)
11  )
12 )