Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DataFormats_TauReco_HLTTauFwd_h
0002 #define DataFormats_TauReco_HLTTauFwd_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 HLTTau;
0010   /// collection of HLTTau objects
0011   typedef std::vector<HLTTau> HLTTauCollection;
0012   /// presistent reference to a HLTTau
0013   typedef edm::Ref<HLTTauCollection> HLTTauRef;
0014   /// references to HLTTau collection
0015   typedef edm::RefProd<HLTTauCollection> HLTTauRefProd;
0016   /// vector of references to HLTTau objects all in the same collection
0017   typedef edm::RefVector<HLTTauCollection> HLTTauRefVector;
0018   /// iterator over a vector of references to HLTTau objects all in the same collection
0019   typedef HLTTauRefVector::iterator hlttau_iterator;
0020 }  // namespace reco
0021 
0022 #endif