Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:57:32

0001 #ifndef TrackInfo_TrackInfoFwd_h
0002 #define TrackInfo_TrackInfoFwd_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 TrackInfo;
0010   /// collection of TrackInfos
0011   typedef std::vector<TrackInfo> TrackInfoCollection;
0012 
0013   typedef edm::Ref<TrackInfoCollection> TrackInfoRef;
0014 
0015   typedef edm::RefProd<TrackInfoCollection> TrackInfoRefProd;
0016 
0017   typedef edm::RefVector<TrackInfoCollection> TrackInfoRefVector;
0018 
0019 }  // namespace reco
0020 
0021 #endif