Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:48

0001 #ifndef Candidate_CandMatchMap_h
0002 #define Candidate_CandMatchMap_h
0003 /* \class reco::CandMatchMap

0004  * 

0005  * One-to-one Candidate association map by reference

0006  *

0007  * \author Luca Lista, INFN

0008  */
0009 #include "DataFormats/Common/interface/AssociationMap.h"
0010 #include "DataFormats/Common/interface/OneToOne.h"
0011 #include "DataFormats/Common/interface/OneToOneGeneric.h"
0012 #include "DataFormats/Candidate/interface/Candidate.h"
0013 
0014 namespace reco {
0015   typedef edm::AssociationMap<edm::OneToOne<reco::CandidateCollection, reco::CandidateCollection> > CandMatchMap;
0016 
0017   typedef edm::AssociationMap<edm::OneToOneGeneric<reco::CandidateView, reco::CandidateView> > CandViewMatchMap;
0018 }  // namespace reco

0019 
0020 #endif