Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:49:18

0001 #ifndef DataFormats_Candidate_VertexCompositeCandidateFwd_h
0002 #define DataFormats_Candidate_VertexCompositeCandidateFwd_h
0003 #include "DataFormats/Common/interface/OwnVector.h"
0004 
0005 namespace reco {
0006   class VertexCompositeCandidate;
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<VertexCompositeCandidate> VertexCompositeCandidateCollection;
0020   /// view of a collection containing candidates

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

0023   typedef edm::Ref<VertexCompositeCandidateCollection> VertexCompositeCandidateRef;
0024   /// persistent reference to an object in a collection of Candidate objects

0025   typedef edm::RefToBase<VertexCompositeCandidate> VertexCompositeCandidateBaseRef;
0026   /// vector of references to objects in the same  collection of Candidate objects

0027   typedef edm::RefVector<VertexCompositeCandidateCollection> VertexCompositeCandidateRefVector;
0028   /// vector of references to objects in the same collection of Candidate objects via base type

0029   typedef edm::RefToBaseVector<VertexCompositeCandidate> VertexCompositeCandidateBaseRefVector;
0030   /// reference to a collection of Candidate objects

0031   typedef edm::RefProd<VertexCompositeCandidateCollection> VertexCompositeCandidateRefProd;
0032   /// vector of references to objects in the same collection of Candidate objects via base type

0033   typedef edm::RefToBaseProd<VertexCompositeCandidate> VertexCompositeCandidateBaseRefProd;
0034 }  // namespace reco

0035 
0036 #endif