CMS 3D CMS Logo

ME0SegmentsRU_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 RU_ME0 = cms.PSet(
4  allowWideSegments = cms.bool(True),
5  doCollisions = cms.bool(True),
6  maxChi2Additional = cms.double(100.0),
7  maxChi2Prune = cms.double(50),
8  maxChi2GoodSeg = cms.double(50),
9  maxPhiSeeds = cms.double(0.001096605744), #Assuming 384 strips
10  maxPhiAdditional = cms.double(0.001096605744), #Assuming 384 strips
11  maxETASeeds = cms.double(0.1), #Assuming 8 eta partitions
12  maxTOFDiff = cms.double(25),
13  requireCentralBX = cms.bool(True), #require that a majority of hits come from central BX
14  minNumberOfHits = cms.uint32(4),
15 )
16 
17 ME0SegAlgoRU = cms.PSet(
18  algo_name = cms.string('ME0SegAlgoRU'),
19  algo_pset = cms.PSet(cms.PSet(RU_ME0))
20 )
21