File indexing completed on 2023-03-17 10:51:15
0001 #ifndef RecoCandidate_RecoChargedCandidateFwd_h
0002 #define RecoCandidate_RecoChargedCandidateFwd_h
0003 #include <vector>
0004 #include "DataFormats/Common/interface/Ref.h"
0005 #include "DataFormats/Common/interface/RefProd.h"
0006 #include "DataFormats/Common/interface/RefVector.h"
0007
0008 namespace reco {
0009 class RecoChargedCandidate;
0010
0011
0012 typedef std::vector<RecoChargedCandidate> RecoChargedCandidateCollection;
0013
0014
0015 typedef edm::Ref<RecoChargedCandidateCollection> RecoChargedCandidateRef;
0016
0017
0018 typedef edm::RefProd<RecoChargedCandidateCollection> RecoChargedCandidateRefProd;
0019
0020
0021 typedef edm::RefVector<RecoChargedCandidateCollection> RecoChargedCandidateRefVector;
0022
0023
0024 typedef RecoChargedCandidateRefVector::iterator recoChargedCandidate_iterator;
0025 }
0026
0027 #endif