Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:57

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 CSCSegAlgoTC = cms.PSet(
0004     algo_name = cms.string('CSCSegAlgoTC'),
0005     algo_psets = cms.VPSet(
0006         cms.PSet(
0007             SegmentSorting = cms.int32(1),
0008             chi2Max = cms.double(6000.0),
0009             chi2ndfProbMin = cms.double(0.0001),
0010             dPhiFineMax = cms.double(0.02),
0011             dPhiMax = cms.double(0.003),
0012             dRPhiFineMax = cms.double(6.0),
0013             dRPhiMax = cms.double(1.2),
0014             minLayersApart = cms.int32(2),
0015             verboseInfo = cms.untracked.bool(True)
0016         ),
0017         cms.PSet(
0018             SegmentSorting = cms.int32(1),
0019             chi2Max = cms.double(6000.0),
0020             chi2ndfProbMin = cms.double(0.0001),
0021             dPhiFineMax = cms.double(0.013),
0022             dPhiMax = cms.double(0.00198),
0023             dRPhiFineMax = cms.double(3.0),
0024             dRPhiMax = cms.double(0.6),
0025             minLayersApart = cms.int32(2),
0026             verboseInfo = cms.untracked.bool(True)
0027         )
0028     ),
0029     chamber_types = cms.vstring(
0030         'ME1/a',
0031         'ME1/b',
0032         'ME1/2',
0033         'ME1/3',
0034         'ME2/1',
0035         'ME2/2',
0036         'ME3/1',
0037         'ME3/2',
0038         'ME4/1',
0039         'ME4/2'
0040     ),
0041     parameters_per_chamber_type = cms.vint32(
0042         2, 1, 1, 1, 1,
0043         1, 1, 1, 1, 1
0044     )
0045 )