CMS 3D CMS Logo

LCToSimTSAssociation_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 layerClusterSimTracksterAssociation = cms.EDProducer("LCToSimTSAssociatorEDProducer",
4  label_lc = cms.InputTag("hgcalMergeLayerClusters"),
5  label_simTst = cms.InputTag("ticlSimTracksters"),
6  associator = cms.InputTag('lcSimTSAssocByEnergyScoreProducer'),
7  label_cp = cms.InputTag("mix","MergedCaloTruth"),
8  associator_cp = cms.InputTag('layerClusterCaloParticleAssociationProducer'),
9  label_scl = cms.InputTag("mix","MergedCaloTruth"),
10  associator_sc = cms.InputTag('layerClusterSimClusterAssociationProducer'),
11 )
12 
13 from Configuration.ProcessModifiers.premix_stage2_cff import premix_stage2
14 premix_stage2.toModify(layerClusterSimTracksterAssociation,
15  label_cp = "mixData:MergedCaloTruth",
16  label_scl = "mixData:MergedCaloTruth"
17 )
18 
19 layerClusterSimTracksterAssociationHFNose = layerClusterSimTracksterAssociation.clone(
20  label_lc = "hgcalLayerClustersHFNose"
21 )