/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SimDataFormats/Associations/src/LayerClusterToSimClusterAssociatorBaseImpl.cc
26 строк
1 KB
Elena Vernazza
Support PFClusters in LCToSCAssociators and propagate to dependencies in TICL and HGCAL validation
08 окт 2025, 21:25
08 окт 2025, 21:25
3db7a4d
Код
Авторство
О чём код?
// Original Author: Marco Rovere #include "SimDataFormats/Associations/interface/LayerClusterToSimClusterAssociatorBaseImpl.h" namespace ticl { template <typename CLUSTER> LayerClusterToSimClusterAssociatorBaseImplT<CLUSTER>::LayerClusterToSimClusterAssociatorBaseImplT() {} template <typename CLUSTER> LayerClusterToSimClusterAssociatorBaseImplT<CLUSTER>::~LayerClusterToSimClusterAssociatorBaseImplT() {} template <typename CLUSTER> RecoToSimCollectionWithSimClustersT<CLUSTER> LayerClusterToSimClusterAssociatorBaseImplT<CLUSTER>::associateRecoToSim( const edm::Handle<CLUSTER> &cCCH, const edm::Handle<SimClusterCollection> &sCCH) const { return RecoToSimCollectionWithSimClustersT<CLUSTER>(); } template <typename CLUSTER> SimToRecoCollectionWithSimClustersT<CLUSTER> LayerClusterToSimClusterAssociatorBaseImplT<CLUSTER>::associateSimToReco( const edm::Handle<CLUSTER> &cCCH, const edm::Handle<SimClusterCollection> &sCCH) const { return SimToRecoCollectionWithSimClustersT<CLUSTER>(); } template class ticl::LayerClusterToSimClusterAssociatorBaseImplT<reco::CaloClusterCollection>; template class ticl::LayerClusterToSimClusterAssociatorBaseImplT<reco::PFClusterCollection>; } // namespace ticl