Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 // Original Author: Leonardo Cristella
0002 
0003 #include "SimDataFormats/Associations/interface/MultiClusterToCaloParticleAssociatorBaseImpl.h"
0004 
0005 namespace hgcal {
0006   MultiClusterToCaloParticleAssociatorBaseImpl::MultiClusterToCaloParticleAssociatorBaseImpl(){};
0007   MultiClusterToCaloParticleAssociatorBaseImpl::~MultiClusterToCaloParticleAssociatorBaseImpl(){};
0008 
0009   hgcal::RecoToSimCollectionWithMultiClusters MultiClusterToCaloParticleAssociatorBaseImpl::associateRecoToSim(
0010       const edm::Handle<reco::HGCalMultiClusterCollection> &cCCH,
0011       const edm::Handle<CaloParticleCollection> &cPCH) const {
0012     return hgcal::RecoToSimCollectionWithMultiClusters();
0013   }
0014 
0015   hgcal::SimToRecoCollectionWithMultiClusters MultiClusterToCaloParticleAssociatorBaseImpl::associateSimToReco(
0016       const edm::Handle<reco::HGCalMultiClusterCollection> &cCCH,
0017       const edm::Handle<CaloParticleCollection> &cPCH) const {
0018     return hgcal::SimToRecoCollectionWithMultiClusters();
0019   }
0020 
0021 }  // namespace hgcal