/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/Candidate/interface/CandMatchMap.h
20 строк
703 B
Cms Build
Clang-Format
05 июн 2019, 13:57
05 июн 2019, 13:57
a7d7e58
Код
Авторство
О чём код?
#ifndef Candidate_CandMatchMap_h #define Candidate_CandMatchMap_h /* \class reco::CandMatchMap * * One-to-one Candidate association map by reference * * \author Luca Lista, INFN */ #include "DataFormats/Common/interface/AssociationMap.h" #include "DataFormats/Common/interface/OneToOne.h" #include "DataFormats/Common/interface/OneToOneGeneric.h" #include "DataFormats/Candidate/interface/Candidate.h" namespace reco { typedef edm::AssociationMap<edm::OneToOne<reco::CandidateCollection, reco::CandidateCollection> > CandMatchMap; typedef edm::AssociationMap<edm::OneToOneGeneric<reco::CandidateView, reco::CandidateView> > CandViewMatchMap; } // namespace reco #endif