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