Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:59

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # following thresholds are optimized using a sample of single muons 
0004 # with flat pT (10 - 50 GeV) and eta (0.8 - 2.4) distributions
0005 SK_ME1234 = cms.PSet(
0006     dPhiFineMax = cms.double(0.025),
0007     verboseInfo = cms.untracked.bool(True),
0008     chi2Max = cms.double(99999.0),
0009     dPhiMax = cms.double(0.003),
0010     wideSeg = cms.double(3.0),
0011     minLayersApart = cms.int32(2),
0012     dRPhiFineMax = cms.double(8.0),
0013     dRPhiMax = cms.double(8.0)
0014 )
0015 SK_ME1A = cms.PSet(
0016     dPhiFineMax = cms.double(0.025),
0017     verboseInfo = cms.untracked.bool(True),
0018     chi2Max = cms.double(99999.0),
0019     dPhiMax = cms.double(0.025),
0020     wideSeg = cms.double(3.0),
0021     minLayersApart = cms.int32(2),
0022     dRPhiFineMax = cms.double(3.0),
0023     dRPhiMax = cms.double(8.0)
0024 )
0025 CSCSegAlgoSK = cms.PSet(
0026     chamber_types = cms.vstring('ME1/a', 'ME1/b', 'ME1/2', 'ME1/3', 'ME2/1', 'ME2/2', 'ME3/1', 'ME3/2', 'ME4/1','ME4/2'),
0027     algo_name = cms.string('CSCSegAlgoSK'),
0028     algo_psets = cms.VPSet( cms.PSet(SK_ME1234), cms.PSet(SK_ME1A) ),
0029     parameters_per_chamber_type = cms.vint32(2, 1, 1, 1, 1, 1, 1, 1, 1, 1 )
0030 )
0031