CMS 3D CMS Logo

TrackAssociatorParameters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 TrackAssociatorParameters = cms.PSet(
4  CSCSegmentCollectionLabel = cms.InputTag("cscSegments"),
5  CaloTowerCollectionLabel = cms.InputTag("towerMaker"),
6  DTRecSegment4DCollectionLabel = cms.InputTag("dt4DSegments"),
7  EBRecHitCollectionLabel = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
8  EERecHitCollectionLabel = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
9  GEMSegmentCollectionLabel = cms.InputTag("gemSegments"),
10  HBHERecHitCollectionLabel = cms.InputTag("hbhereco"),
11  HORecHitCollectionLabel = cms.InputTag("horeco"),
12  ME0SegmentCollectionLabel = cms.InputTag("me0Segments"),
13  accountForTrajectoryChangeCalo = cms.bool(False),
14  dREcal = cms.double(9999.0),
15  dREcalPreselection = cms.double(0.05),
16  dRHcal = cms.double(9999.0),
17  dRHcalPreselection = cms.double(0.2),
18  dRMuon = cms.double(9999.0),
19  dRMuonPreselection = cms.double(0.2),
20  muonMaxDistanceSigmaX = cms.double(0.0),
21  muonMaxDistanceSigmaY = cms.double(0.0),
22  muonMaxDistanceX = cms.double(5.0),
23  muonMaxDistanceY = cms.double(5.0),
24  propagateAllDirections = cms.bool(True),
25  trajectoryUncertaintyTolerance = cms.double(-1.0),
26  truthMatch = cms.bool(False),
27  useCalo = cms.bool(False),
28  useEcal = cms.bool(True),
29  useGEM = cms.bool(False),
30  useHO = cms.bool(True),
31  useHcal = cms.bool(True),
32  useME0 = cms.bool(False),
33  useMuon = cms.bool(True),
34  usePreshower = cms.bool(False)
35 )