CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSCSegmentAlgorithmSK_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 SK_ME1234 = cms.PSet(
6  dPhiFineMax = cms.double(0.025),
7  verboseInfo = cms.untracked.bool(True),
8  chi2Max = cms.double(99999.0),
9  dPhiMax = cms.double(0.003),
10  wideSeg = cms.double(3.0),
11  minLayersApart = cms.int32(2),
12  dRPhiFineMax = cms.double(8.0),
13  dRPhiMax = cms.double(8.0)
14 )
15 SK_ME1A = cms.PSet(
16  dPhiFineMax = cms.double(0.025),
17  verboseInfo = cms.untracked.bool(True),
18  chi2Max = cms.double(99999.0),
19  dPhiMax = cms.double(0.025),
20  wideSeg = cms.double(3.0),
21  minLayersApart = cms.int32(2),
22  dRPhiFineMax = cms.double(3.0),
23  dRPhiMax = cms.double(8.0)
24 )
25 CSCSegAlgoSK = cms.PSet(
26  chamber_types = cms.vstring('ME1/a',
27  'ME1/b',
28  'ME1/2',
29  'ME1/3',
30  'ME2/1',
31  'ME2/2',
32  'ME3/1',
33  'ME3/2',
34  'ME4/1'),
35  # vstring chamber_types = {"ME1/a", "ME1/b", "ME1/2", "ME1/3", "ME2/1", "ME2/2", "ME3/1", "ME3/2", "ME4/1", "ME4/2"}
36  # vint32 parameters_per_chamber_type = {2, 1, 1, 1, 1, 1, 1, 1, 1, 1}
37  algo_name = cms.string('CSCSegAlgoSK'),
38  algo_psets = cms.VPSet(cms.PSet(
39  SK_ME1234
40  ),
41  cms.PSet(
42  SK_ME1A
43  )),
44  parameters_per_chamber_type = cms.vint32(2, 1, 1, 1, 1,
45  1, 1, 1, 1)
46 )
47