Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef TauReco_PFTauTagInfoFwd_h
0002 #define TauReco_PFTauTagInfoFwd_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 PFTauTagInfo;
0010   /// collection of PFTauTagInfo objects
0011   typedef std::vector<PFTauTagInfo> PFTauTagInfoCollection;
0012   /// presistent reference to a PFTauTagInfo
0013   typedef edm::Ref<PFTauTagInfoCollection> PFTauTagInfoRef;
0014   /// references to PFTauTagInfo collection
0015   typedef edm::RefProd<PFTauTagInfoCollection> PFTauTagInfoRefProd;
0016   /// vector of references to PFTauTagInfo objects all in the same collection
0017   typedef edm::RefVector<PFTauTagInfoCollection> PFTauTagInfoRefVector;
0018   /// iterator over a vector of references to PFTauTagInfo objects all in the same collection
0019   typedef PFTauTagInfoRefVector::iterator pftautaginfo_iterator;
0020 }  // namespace reco
0021 
0022 #endif