Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TrackInfoContainer.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TrackInfoContainer.h
1 #ifndef TRACKINFOCONTAINER_H
2 #define TRACKINFOCONTAINER_H
3 
4 #include "SvtxTrackInfo.h"
5 #include "SvtxTrackInfo_v1.h"
6 
7 #include <phool/PHObject.h>
8 
9 #include <climits>
10 #include <map>
11 
13 {
14  public:
15 
16  TrackInfoContainer() = default;
17  ~TrackInfoContainer() override = default;
18  void identify(std::ostream& os = std::cout) const override{
19  os << "TrackInfoContainer base class" << std::endl;
20  }
21 
22  virtual void Reset() override {}
23  virtual SvtxTrackInfo* get_trackinfo(int /*index*/) { return nullptr; }
24  virtual void add_trackinfo(int, SvtxTrackInfo) {}
25  virtual void add_trackinfo(int, SvtxTrackInfo*) {}
26  //virtual TrackInfo* get_tower_at_key(int /*key*/) { return nullptr; }
27  virtual size_t size() const { return 0; }
28 
29 
30  private:
32 };
33 
34 #endif