1 #ifndef GHITSCOLLECTION_H
2 #define GHITSCOLLECTION_H 1
25 log->debug(CONSTRUCTOR,
"GDataCollection");
26 trueInfosData =
new std::vector<GTrueInfoData*>;
27 digitizedData =
new std::vector<GDigitizedData*>;
36 for (
auto *hit : (*trueInfosData)) {
delete hit; }
37 for (
auto *hit : (*digitizedData)) {
delete hit; }
38 log->debug(DESTRUCTOR,
"GDataCollection");
48 log->debug(NORMAL,
" adding hit to trueInfosData with identity: ", data->
getIdentityString());
49 trueInfosData->push_back(data);
57 log->debug(NORMAL,
" adding hit to digitizedData with identity: ", data->
getIdentityString());
58 digitizedData->push_back(data);
65 inline const std::vector<GTrueInfoData*> *
getTrueInfoData()
const {
return trueInfosData; }
71 inline const std::vector<GDigitizedData*> *
getDigitizedData()
const {
return digitizedData; }
74 std::vector<GTrueInfoData*> *trueInfosData =
nullptr;
75 std::vector<GDigitizedData*> *digitizedData =
nullptr;
~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.