CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSCSegmentAlgorithmTC_cfi.py
Go to the documentation of this file.
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',
32  'ME1/b',
33  'ME1/2',
34  'ME1/3',
35  'ME2/1',
36  'ME2/2',
37  'ME3/1',
38  'ME3/2',
39  'ME4/1'),
40  algo_name = cms.string('CSCSegAlgoTC'),
41  algo_psets = cms.VPSet(cms.PSet(
42  TC_ME1234
43  ),
44  cms.PSet(
45  TC_ME1A
46  )),
47  parameters_per_chamber_type = cms.vint32(2, 1, 1, 1, 1,
48  1, 1, 1, 1)
49 )
50