CMS 3D CMS Logo

truth_prod.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from L1Trigger.L1THGCalUtilities.caloTruthCellsProducer_cfi import l1tCaloTruthCellsProducer
3 
4 def create_truth_prod(process, inputs):
5  producer = process.l1tCaloTruthCellsProducer.clone(
6  triggerCells = cms.InputTag('{}:HGCalVFEProcessorSums'.format(inputs))
7  )
8  return producer
def create_truth_prod(process, inputs)
Definition: truth_prod.py:4