Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-04-24 01:28:09

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltInitialStepSeeds = cms.EDProducer("SeedGeneratorFromProtoTracksEDProducer",
0004     InputCollection = cms.InputTag("hltPhase2PixelTracks"),
0005     InputVertexCollection = cms.InputTag(""),
0006     SeedCreatorPSet = cms.PSet(
0007         refToPSet_ = cms.string('seedFromProtoTracks')
0008     ),
0009     TTRHBuilder = cms.string('WithTrackAngle'),
0010     originHalfLength = cms.double(0.3),
0011     originRadius = cms.double(0.1),
0012     useEventsWithNoVertex = cms.bool(True),
0013     usePV = cms.bool(False),
0014     useProtoTrackKinematics = cms.bool(False),
0015     includeFourthHit = cms.bool(False)
0016 )
0017 
0018 from Configuration.ProcessModifiers.trackingLST_cff import trackingLST
0019 trackingLST.toModify(hltInitialStepSeeds, includeFourthHit = True)
0020 
0021 from Configuration.ProcessModifiers.phase2_hlt_vertexTrimming_cff import phase2_hlt_vertexTrimming
0022 phase2_hlt_vertexTrimming.toModify(hltInitialStepSeeds, InputVertexCollection = "hltPhase2TrimmedPixelVertices")