File indexing completed on 2023-03-17 10:49:17
0001 #ifndef Candidate_CandidateFwd_h
0002 #define Candidate_CandidateFwd_h
0003 #include "DataFormats/Common/interface/OwnVector.h"
0004
0005 namespace reco {
0006 class Candidate;
0007 }
0008
0009 #include "DataFormats/Common/interface/Ref.h"
0010 #include "DataFormats/Common/interface/Ptr.h"
0011 #include "DataFormats/Common/interface/PtrVector.h"
0012 #include "DataFormats/Common/interface/RefProd.h"
0013 #include "DataFormats/Common/interface/RefVector.h"
0014 #include "DataFormats/Common/interface/RefToBase.h"
0015 #include "DataFormats/Common/interface/RefToBaseVector.h"
0016 #include "DataFormats/Common/interface/RefToBaseProd.h"
0017 #include "DataFormats/Common/interface/View.h"
0018
0019 namespace reco {
0020
0021 typedef edm::OwnVector<Candidate> CandidateCollection;
0022
0023 typedef edm::View<Candidate> CandidateView;
0024
0025 typedef edm::Ptr<Candidate> CandidatePtr;
0026
0027 typedef edm::PtrVector<Candidate> CandidatePtrVector;
0028
0029 typedef edm::Ref<CandidateCollection> CandidateRef;
0030
0031 typedef edm::RefToBase<Candidate> CandidateBaseRef;
0032
0033 typedef edm::RefVector<CandidateCollection> CandidateRefVector;
0034
0035 typedef edm::RefToBaseVector<Candidate> CandidateBaseRefVector;
0036
0037 typedef edm::RefProd<CandidateCollection> CandidateRefProd;
0038
0039 typedef edm::RefToBaseProd<Candidate> CandidateBaseRefProd;
0040 }
0041
0042 #endif