Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:16

0001 #ifndef DataFormats_TauReco_BaseTauFwd_h
0002 #define DataFormats_TauReco_BaseTauFwd_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 BaseTau;
0010   /// collection of BaseTau objects
0011   typedef std::vector<BaseTau> BaseTauCollection;
0012   /// presistent reference to a BaseTau
0013   typedef edm::Ref<BaseTauCollection> BaseTauRef;
0014   /// references to BaseTau collection
0015   typedef edm::RefProd<BaseTauCollection> BaseTauRefProd;
0016   /// vector of references to BaseTau objects all in the same collection
0017   typedef edm::RefVector<BaseTauCollection> BaseTauRefVector;
0018   /// iterator over a vector of references to BaseTau objects all in the same collection
0019   typedef BaseTauRefVector::iterator basetau_iterator;
0020 }  // namespace reco
0021 
0022 #endif