CMS 3D CMS Logo

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