CMS 3D CMS Logo

CSCSegmentAlgorithmTC_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # following thresholds are optimized using a sample of single muons
4 # with flat pT (10 - 50 GeV) and eta (0.8 - 2.4) distributions
5 #
6 # The cuts dRPhiFineMax and dPhiFineMax where re-optimized using
7 # MTCC data.
8 TC_ME1234 = cms.PSet(
9  dPhiFineMax = cms.double(0.02),
10  verboseInfo = cms.untracked.bool(True),
11  SegmentSorting = cms.int32(1),
12  chi2Max = cms.double(6000.0),
13  dPhiMax = cms.double(0.003),
14  chi2ndfProbMin = cms.double(0.0001),
15  minLayersApart = cms.int32(2),
16  dRPhiFineMax = cms.double(6.0),
17  dRPhiMax = cms.double(1.2)
18 )
19 TC_ME1A = cms.PSet(
20  dPhiFineMax = cms.double(0.013),
21  verboseInfo = cms.untracked.bool(True),
22  SegmentSorting = cms.int32(1),
23  chi2Max = cms.double(6000.0),
24  dPhiMax = cms.double(0.00198),
25  chi2ndfProbMin = cms.double(0.0001),
26  minLayersApart = cms.int32(2),
27  dRPhiFineMax = cms.double(3.0),
28  dRPhiMax = cms.double(0.6)
29 )
30 CSCSegAlgoTC = cms.PSet(
31  chamber_types = cms.vstring('ME1/a', 'ME1/b', 'ME1/2', 'ME1/3', 'ME2/1', 'ME2/2', 'ME3/1', 'ME3/2', 'ME4/1','ME4/2'),
32  algo_name = cms.string('CSCSegAlgoTC'),
33  algo_psets = cms.VPSet( cms.PSet(TC_ME1234), cms.PSet(TC_ME1A) ),
34  parameters_per_chamber_type = cms.vint32( 2, 1, 1, 1, 1, 1, 1, 1, 1, 1 )
35 )
36