CMS 3D CMS Logo

default_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Default Parameters
4 #
5 # Purpose: extraction of energy deposition and muon matching information
6 # for a minimum ionizing particle. Up to 5x5 energy for ECAL
7 # and HCAL should be available.
8 #
9 TrackAssociatorParameterBlock = cms.PSet(
10  TrackAssociatorParameters = cms.PSet(
11  muonMaxDistanceSigmaX = cms.double(0.0),
12  muonMaxDistanceSigmaY = cms.double(0.0),
13  CSCSegmentCollectionLabel = cms.InputTag("cscSegments"),
14  useGEM = cms.bool(False),
15  GEMSegmentCollectionLabel = cms.InputTag("gemSegments"),
16  useME0 = cms.bool(False),
17  ME0SegmentCollectionLabel = cms.InputTag("me0Segments"),
18  dRHcal = cms.double(9999.0),
19  dREcal = cms.double(9999.0),
20  CaloTowerCollectionLabel = cms.InputTag("towerMaker"),
21  useEcal = cms.bool(True),
22  dREcalPreselection = cms.double(0.05),
23  HORecHitCollectionLabel = cms.InputTag("horeco"),
24  dRMuon = cms.double(9999.0),
25  trajectoryUncertaintyTolerance = cms.double(-1.0),
26  propagateAllDirections = cms.bool(True),
27  muonMaxDistanceX = cms.double(5.0),
28  muonMaxDistanceY = cms.double(5.0),
29  useHO = cms.bool(True),
30  accountForTrajectoryChangeCalo = cms.bool(False),
31  DTRecSegment4DCollectionLabel = cms.InputTag("dt4DSegments"),
32  EERecHitCollectionLabel = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
33  dRHcalPreselection = cms.double(0.2),
34  useMuon = cms.bool(True),
35  useCalo = cms.bool(False),
36  EBRecHitCollectionLabel = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
37  dRMuonPreselection = cms.double(0.2),
38  usePreshower = cms.bool(False),
39  dRPreshowerPreselection = cms.double(0.2),
40  truthMatch = cms.bool(False),
41  HBHERecHitCollectionLabel = cms.InputTag("hbhereco"),
42  useHcal = cms.bool(True)
43  )
44 )
45 TrackAssociatorParameters = cms.PSet(
46  muonMaxDistanceSigmaX = cms.double(0.0),
47  muonMaxDistanceSigmaY = cms.double(0.0),
48  CSCSegmentCollectionLabel = cms.InputTag("cscSegments"),
49  useGEM = cms.bool(False),
50  GEMSegmentCollectionLabel = cms.InputTag("gemSegments"),
51  useME0 = cms.bool(False),
52  ME0SegmentCollectionLabel = cms.InputTag("me0Segments"),
53  dRHcal = cms.double(9999.0),
54  dREcal = cms.double(9999.0),
55  CaloTowerCollectionLabel = cms.InputTag("towerMaker"),
56  useEcal = cms.bool(True),
57  dREcalPreselection = cms.double(0.05),
58  HORecHitCollectionLabel = cms.InputTag("horeco"),
59  dRMuon = cms.double(9999.0),
60  trajectoryUncertaintyTolerance = cms.double(-1.0),
61  propagateAllDirections = cms.bool(True),
62  muonMaxDistanceX = cms.double(5.0),
63  muonMaxDistanceY = cms.double(5.0),
64  useHO = cms.bool(True),
65  accountForTrajectoryChangeCalo = cms.bool(False),
66  DTRecSegment4DCollectionLabel = cms.InputTag("dt4DSegments"),
67  EERecHitCollectionLabel = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
68  dRMuonPreselection = cms.double(0.2),
69  usePreshower = cms.bool(False),
70  dRHcalPreselection = cms.double(0.2),
71  useMuon = cms.bool(True),
72  useCalo = cms.bool(False),
73  EBRecHitCollectionLabel = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
74  truthMatch = cms.bool(False),
75  HBHERecHitCollectionLabel = cms.InputTag("hbhereco"),
76  useHcal = cms.bool(True)
77 )