1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef TrackInfo_TrackInfoFwd_h
#define TrackInfo_TrackInfoFwd_h
#include <vector>
#include "DataFormats/Common/interface/Ref.h"
#include "DataFormats/Common/interface/RefProd.h"
#include "DataFormats/Common/interface/RefVector.h"
namespace reco {
class TrackInfo;
/// collection of TrackInfos
typedef std::vector<TrackInfo> TrackInfoCollection;
typedef edm::Ref<TrackInfoCollection> TrackInfoRef;
typedef edm::RefProd<TrackInfoCollection> TrackInfoRefProd;
typedef edm::RefVector<TrackInfoCollection> TrackInfoRefVector;
} // namespace reco
#endif
|