Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:27

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def customisePhase2TTOn110(process):
0004     process.load('SimCalorimetry.HcalTrigPrimProducers.hcaltpdigi_cff')
0005     #when running directly, the ttclusterassoc uses the "mix" product name
0006     #however its ediased to simSiPixelDigis so its output with that name
0007     #so we have to adjust the input tag
0008     process.TTClusterAssociatorFromPixelDigis.digiSimLinks = cms.InputTag('simSiPixelDigis','Tracker')
0009 
0010     return process