CMS 3D CMS Logo

ProducerSetup_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from Configuration.ProcessModifiers.dd4hep_cff import dd4hep
4 from L1Trigger.TrackTrigger.ProducerSetup_cfi import TrackTrigger_params
5 
6 dd4hep.toModify(TrackTrigger_params,
7  fromDD4hep = cms.bool(True),
8  ProcessHistory = cms.PSet (
9  GeometryConfiguration = cms.string("DDDetectorESProducer@"),
10  TTStubAlgorithm = cms.string("TTStubAlgorithm_official_Phase2TrackerDigi_@")
11  )
12 )
13 
14 TrackTriggerSetup = cms.ESProducer("tt::ProducerSetup", TrackTrigger_params)