File indexing completed on 2024-04-06 12:15:57
0001 import FWCore.ParameterSet.Config as cms
0002
0003 CSCSegAlgoRU = cms.PSet(
0004 algo_name = cms.string('CSCSegAlgoRU'),
0005 algo_psets = cms.VPSet(
0006 cms.PSet(
0007 chi2Max = cms.double(100.0),
0008 chi2Norm_2D_ = cms.double(35),
0009 chi2_str = cms.double(50.0),
0010 dPhiIntMax = cms.double(0.005),
0011 dPhiMax = cms.double(0.006),
0012 dRIntMax = cms.double(2.0),
0013 dRMax = cms.double(1.5),
0014 doCollisions = cms.bool(True),
0015 enlarge = cms.bool(False),
0016 minLayersApart = cms.int32(1),
0017 wideSeg = cms.double(3.0)
0018 ),
0019 cms.PSet(
0020 chi2Max = cms.double(100.0),
0021 chi2Norm_2D_ = cms.double(35),
0022 chi2_str = cms.double(50.0),
0023 dPhiIntMax = cms.double(0.004),
0024 dPhiMax = cms.double(0.005),
0025 dRIntMax = cms.double(2.0),
0026 dRMax = cms.double(1.5),
0027 doCollisions = cms.bool(True),
0028 enlarge = cms.bool(False),
0029 minLayersApart = cms.int32(1),
0030 wideSeg = cms.double(3.0)
0031 ),
0032 cms.PSet(
0033 chi2Max = cms.double(100.0),
0034 chi2Norm_2D_ = cms.double(35),
0035 chi2_str = cms.double(50.0),
0036 dPhiIntMax = cms.double(0.003),
0037 dPhiMax = cms.double(0.004),
0038 dRIntMax = cms.double(2.0),
0039 dRMax = cms.double(1.5),
0040 doCollisions = cms.bool(True),
0041 enlarge = cms.bool(False),
0042 minLayersApart = cms.int32(1),
0043 wideSeg = cms.double(3.0)
0044 ),
0045 cms.PSet(
0046 chi2Max = cms.double(60.0),
0047 chi2Norm_2D_ = cms.double(20),
0048 chi2_str = cms.double(30.0),
0049 dPhiIntMax = cms.double(0.002),
0050 dPhiMax = cms.double(0.003),
0051 dRIntMax = cms.double(2.0),
0052 dRMax = cms.double(1.5),
0053 doCollisions = cms.bool(True),
0054 enlarge = cms.bool(False),
0055 minLayersApart = cms.int32(1),
0056 wideSeg = cms.double(3.0)
0057 ),
0058 cms.PSet(
0059 chi2Max = cms.double(180.0),
0060 chi2Norm_2D_ = cms.double(60),
0061 chi2_str = cms.double(80.0),
0062 dPhiIntMax = cms.double(0.005),
0063 dPhiMax = cms.double(0.007),
0064 dRIntMax = cms.double(2.0),
0065 dRMax = cms.double(1.5),
0066 doCollisions = cms.bool(True),
0067 enlarge = cms.bool(False),
0068 minLayersApart = cms.int32(1),
0069 wideSeg = cms.double(3.0)
0070 ),
0071 cms.PSet(
0072 chi2Max = cms.double(100.0),
0073 chi2Norm_2D_ = cms.double(35),
0074 chi2_str = cms.double(50.0),
0075 dPhiIntMax = cms.double(0.004),
0076 dPhiMax = cms.double(0.006),
0077 dRIntMax = cms.double(2.0),
0078 dRMax = cms.double(1.5),
0079 doCollisions = cms.bool(True),
0080 enlarge = cms.bool(False),
0081 minLayersApart = cms.int32(1),
0082 wideSeg = cms.double(3.0)
0083 )
0084 ),
0085 chamber_types = cms.vstring(
0086 'ME1/a',
0087 'ME1/b',
0088 'ME1/2',
0089 'ME1/3',
0090 'ME2/1',
0091 'ME2/2',
0092 'ME3/1',
0093 'ME3/2',
0094 'ME4/1',
0095 'ME4/2'
0096 ),
0097 parameters_per_chamber_type = cms.vint32(
0098 1, 2, 3, 4, 5,
0099 6, 5, 6, 5, 6
0100 )
0101 )