Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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

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

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

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

0027   typedef edm::RefVector<NamedCompositeCandidateCollection> NamedCompositeCandidateRefVector;
0028   /// reference to a collection of Candidate objects

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

0031   typedef edm::RefToBaseProd<NamedCompositeCandidate> NamedCompositeCandidateBaseRefProd;
0032 }  // namespace reco

0033 
0034 #endif