CMS 3D CMS Logo

ME0SegAlgoRU_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 ME0SegAlgoRU = cms.PSet(
4  algo_name = cms.string('ME0SegAlgoRU'),
5  algo_pset = cms.PSet(
6  allowWideSegments = cms.bool(True),
7  doCollisions = cms.bool(True),
8  maxChi2Additional = cms.double(100.0),
9  maxChi2GoodSeg = cms.double(50),
10  maxChi2Prune = cms.double(50),
11  maxETASeeds = cms.double(0.1),
12  maxPhiAdditional = cms.double(0.001096605744),
13  maxPhiSeeds = cms.double(0.001096605744),
14  maxTOFDiff = cms.double(25),
15  minNumberOfHits = cms.uint32(4),
16  requireCentralBX = cms.bool(True)
17  )
18 )