CMS 3D CMS Logo

CSCSegAlgoTC_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 CSCSegAlgoTC = cms.PSet(
4  algo_name = cms.string('CSCSegAlgoTC'),
5  algo_psets = cms.VPSet(
6  cms.PSet(
7  SegmentSorting = cms.int32(1),
8  chi2Max = cms.double(6000.0),
9  chi2ndfProbMin = cms.double(0.0001),
10  dPhiFineMax = cms.double(0.02),
11  dPhiMax = cms.double(0.003),
12  dRPhiFineMax = cms.double(6.0),
13  dRPhiMax = cms.double(1.2),
14  minLayersApart = cms.int32(2),
15  verboseInfo = cms.untracked.bool(True)
16  ),
17  cms.PSet(
18  SegmentSorting = cms.int32(1),
19  chi2Max = cms.double(6000.0),
20  chi2ndfProbMin = cms.double(0.0001),
21  dPhiFineMax = cms.double(0.013),
22  dPhiMax = cms.double(0.00198),
23  dRPhiFineMax = cms.double(3.0),
24  dRPhiMax = cms.double(0.6),
25  minLayersApart = cms.int32(2),
26  verboseInfo = cms.untracked.bool(True)
27  )
28  ),
29  chamber_types = cms.vstring(
30  'ME1/a',
31  'ME1/b',
32  'ME1/2',
33  'ME1/3',
34  'ME2/1',
35  'ME2/2',
36  'ME3/1',
37  'ME3/2',
38  'ME4/1',
39  'ME4/2'
40  ),
41  parameters_per_chamber_type = cms.vint32(
42  2, 1, 1, 1, 1,
43  1, 1, 1, 1, 1
44  )
45 )