StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
FwdDataSource.h
1 #ifndef FWD_FWD_DATA_SOURCE_H
2 #define FWD_FWD_DATA_SOURCE_H
3 
4 #include <map>
5 #include "StFwdTrackMaker/include/Tracker/FwdHit.h"
6 
7 
8 /* Authoritative Data Source for Fwd tracks + hits
9  *
10  * Separation here is not great, but the track/hit loading
11  * is tightly bound to the StMaker through the ttree and histogram
12  * creation, as well as through the Datasets (StEvent, geant )
13  *
14  * So while the filling is done elsewhere, this holds that
15  * data and releases the pointers when needed.
16  */
18  public:
19 
20  using HitMap_t = std::map<int, std::vector<KiTrack::IHit*>>;
21  using McTrackMap_t = std::map<int, shared_ptr<McTrack>>;
22 
23  HitMap_t &getFttHits( ) {
24  return mFttHits;
25  };
26  HitMap_t &getFstHits() {
27  return mFstHits;
28  };
29  McTrackMap_t &getMcTracks() {
30  return mMcTracks;
31  };
32 
33  // Cleanup
34  void clear() {
35  // Just empty our vectors, we dont own the memory
36  mFttHits.clear();
37  mFstHits.clear();
38  // the tracks are shared pointers, so they will be taken care of by clearing the map (below)
39  mMcTracks.clear();
40  }
41 
42  // TODO, protect and add interaface for pushing hits / tracks
43  HitMap_t mFttHits;
44  HitMap_t mFstHits;
45  McTrackMap_t mMcTracks;
46 };
47 
48 
49 
50 
51 #endif