Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ME0SegAlgoRU = cms.PSet(
0004     algo_name = cms.string('ME0SegAlgoRU'),
0005     algo_pset = cms.PSet(
0006         allowWideSegments = cms.bool(True),
0007         doCollisions = cms.bool(True),
0008         maxChi2Additional = cms.double(100.0),
0009         maxChi2GoodSeg = cms.double(50),
0010         maxChi2Prune = cms.double(50),
0011         maxETASeeds = cms.double(0.1),
0012         maxPhiAdditional = cms.double(0.001096605744),
0013         maxPhiSeeds = cms.double(0.001096605744),
0014         maxTOFDiff = cms.double(25),
0015         minNumberOfHits = cms.uint32(4),
0016         requireCentralBX = cms.bool(True)
0017     )
0018 )