File indexing completed on 2024-04-06 12:29:37
0001 import FWCore.ParameterSet.Config as cms
0002
0003 layerClusterSimClusterAssociation = cms.EDProducer("LCToSCAssociatorEDProducer",
0004 associator = cms.InputTag('scAssocByEnergyScoreProducer'),
0005 label_scl = cms.InputTag("mix","MergedCaloTruth"),
0006 label_lcl = cms.InputTag("hgcalMergeLayerClusters")
0007 )
0008
0009 from Configuration.ProcessModifiers.premix_stage2_cff import premix_stage2
0010 premix_stage2.toModify(layerClusterSimClusterAssociation,
0011 label_scl = "mixData:MergedCaloTruth"
0012 )
0013
0014 layerClusterSimClusterAssociationHFNose = layerClusterSimClusterAssociation.clone(
0015 label_lcl = "hgcalLayerClustersHFNose"
0016 )