gdata
gDataCollection.h
Go to the documentation of this file.
1 #ifndef GHITSCOLLECTION_H
2 #define GHITSCOLLECTION_H 1
3 
12 #include "gTrueInfoData.h"
13 #include "gDigitizedData.h"
14 #include <string>
15 #include <map>
16 #include <vector>
17 
19 public:
24  GDataCollection(GLogger * const logger) : log(logger) {
25  log->debug(CONSTRUCTOR, "GDataCollection");
26  trueInfosData = new std::vector<GTrueInfoData*>;
27  digitizedData = new std::vector<GDigitizedData*>;
28  }
29 
36  for (auto *hit : (*trueInfosData)) { delete hit; }
37  for (auto *hit : (*digitizedData)) { delete hit; }
38  log->debug(DESTRUCTOR, "GDataCollection");
39  delete trueInfosData;
40  delete digitizedData;
41  }
42 
48  log->debug(NORMAL, " adding hit to trueInfosData with identity: ", data->getIdentityString());
49  trueInfosData->push_back(data);
50  }
51 
57  log->debug(NORMAL, " adding hit to digitizedData with identity: ", data->getIdentityString());
58  digitizedData->push_back(data);
59  }
60 
65  inline const std::vector<GTrueInfoData*> *getTrueInfoData() const { return trueInfosData; }
66 
71  inline const std::vector<GDigitizedData*> *getDigitizedData() const { return digitizedData; }
72 
73 private:
74  std::vector<GTrueInfoData*> *trueInfosData = nullptr;
75  std::vector<GDigitizedData*> *digitizedData = nullptr;
76  GLogger * const log;
77 };
78 
79 #endif
~GDataCollection()
Destructor for GDataCollection.
const std::vector< GDigitizedData * > * getDigitizedData() const
Returns the vector of digitized hit data.
const std::vector< GTrueInfoData * > * getTrueInfoData() const
Returns the vector of true hit information data.
void addDigitizedData(GDigitizedData *data)
Adds digitized hit data.
void addTrueInfoData(GTrueInfoData *data)
Adds true hit information data.
GDataCollection(GLogger *const logger)
Constructs a GDataCollection.
std::string getIdentityString()
Returns a string representation of the hit identity.
std::string getIdentityString()
Returns a string representation of the identity.
Defines the GTrueInfoData class which holds true hit data.