Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:37

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 layerClusterSimTracksterAssociation = cms.EDProducer("LCToSimTSAssociatorEDProducer",
0004     label_lc = cms.InputTag("hgcalMergeLayerClusters"),
0005     label_simTst = cms.InputTag("ticlSimTracksters"),
0006     associator = cms.InputTag('lcSimTSAssocByEnergyScoreProducer'),
0007     label_cp = cms.InputTag("mix","MergedCaloTruth"),
0008     associator_cp = cms.InputTag('layerClusterCaloParticleAssociationProducer'),
0009     label_scl = cms.InputTag("mix","MergedCaloTruth"),
0010     associator_sc = cms.InputTag('layerClusterSimClusterAssociationProducer'),
0011 )
0012 
0013 from Configuration.ProcessModifiers.premix_stage2_cff import premix_stage2
0014 premix_stage2.toModify(layerClusterSimTracksterAssociation,
0015     label_cp = "mixData:MergedCaloTruth",
0016     label_scl = "mixData:MergedCaloTruth"
0017 )
0018 
0019 layerClusterSimTracksterAssociationHFNose = layerClusterSimTracksterAssociation.clone(
0020     label_lc = "hgcalLayerClustersHFNose"
0021 )