Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:14

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 RU_ME0 = cms.PSet(
0004     allowWideSegments = cms.bool(True),
0005     doCollisions = cms.bool(True),
0006     maxChi2Additional = cms.double(100.0),
0007     maxChi2Prune = cms.double(50),
0008     maxChi2GoodSeg = cms.double(50),
0009     maxPhiSeeds = cms.double(0.001096605744), #Assuming 384 strips

0010     maxPhiAdditional = cms.double(0.001096605744), #Assuming 384 strips

0011     maxETASeeds = cms.double(0.1), #Assuming 8 eta partitions

0012     maxTOFDiff = cms.double(25),
0013     requireCentralBX = cms.bool(True), #require that a majority of hits come from central BX

0014     minNumberOfHits = cms.uint32(4),
0015 )
0016 
0017 ME0SegAlgoRU = cms.PSet(
0018     algo_name = cms.string('ME0SegAlgoRU'),
0019     algo_pset = cms.PSet(cms.PSet(RU_ME0))
0020 )
0021