Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DataFormats_Candidate_VertexCompositePtrCandidateFwd_h
0002 #define DataFormats_Candidate_VertexCompositePtrCandidateFwd_h
0003 #include "DataFormats/Common/interface/OwnVector.h"
0004 
0005 namespace reco {
0006   class VertexCompositePtrCandidate;
0007 }
0008 
0009 #include "DataFormats/Common/interface/Ref.h"
0010 #include "DataFormats/Common/interface/RefProd.h"
0011 #include "DataFormats/Common/interface/RefVector.h"
0012 #include "DataFormats/Common/interface/RefToBase.h"
0013 #include "DataFormats/Common/interface/RefToBaseVector.h"
0014 #include "DataFormats/Common/interface/RefToBaseProd.h"
0015 #include "DataFormats/Common/interface/View.h"
0016 
0017 namespace reco {
0018   /// collection of Candidate objects

0019   typedef std::vector<VertexCompositePtrCandidate> VertexCompositePtrCandidateCollection;
0020   /// view of a collection containing candidates

0021   typedef edm::View<VertexCompositePtrCandidate> VertexCompositePtrCandidateView;
0022   /// persistent reference to an object in a collection of Candidate objects

0023   typedef edm::Ref<VertexCompositePtrCandidateCollection> VertexCompositePtrCandidateRef;
0024   /// vector of references to objects in the same  collection of Candidate objects

0025   typedef edm::RefVector<VertexCompositePtrCandidateCollection> VertexCompositePtrCandidateRefVector;
0026   /// vector of references to objects in the same collection of Candidate objects via base type

0027   typedef edm::RefToBaseVector<VertexCompositePtrCandidate> VertexCompositePtrCandidateBaseRefVector;
0028   /// reference to a collection of Candidate objects

0029   typedef edm::RefProd<VertexCompositePtrCandidateCollection> VertexCompositePtrCandidateRefProd;
0030   /// vector of references to objects in the same collection of Candidate objects via base type

0031   typedef edm::RefToBaseProd<VertexCompositePtrCandidate> VertexCompositePtrCandidateBaseRefProd;
0032 }  // namespace reco

0033 
0034 #endif