CMS 3D CMS Logo

customisePhase2TTOn110.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 def customisePhase2TTOn110(process):
4  process.load('SimCalorimetry.HcalTrigPrimProducers.hcaltpdigi_cff')
5  #when running directly, the ttclusterassoc uses the "mix" product name
6  #however its ediased to simSiPixelDigis so its output with that name
7  #so we have to adjust the input tag
8  process.TTClusterAssociatorFromPixelDigis.digiSimLinks = cms.InputTag('simSiPixelDigis','Tracker')
9 
10  return process