CMS 3D CMS Logo

CSCSegmentAlgorithmSK_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 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', 'ME1/b', 'ME1/2', 'ME1/3', 'ME2/1', 'ME2/2', 'ME3/1', 'ME3/2', 'ME4/1','ME4/2'),
27  algo_name = cms.string('CSCSegAlgoSK'),
28  algo_psets = cms.VPSet( cms.PSet(SK_ME1234), cms.PSet(SK_ME1A) ),
29  parameters_per_chamber_type = cms.vint32(2, 1, 1, 1, 1, 1, 1, 1, 1, 1 )
30 )
31