gdata
gEventDataCollection.h
Go to the documentation of this file.
1 #ifndef GEVENTDATA_H
2 #define GEVENTDATA_H 1
3 
13 #include "../gdataConventions.h"
14 #include "gDataCollection.h"
15 #include <vector>
16 #include <map>
17 #include <string>
18 
20 public:
27  GEventDataCollection(GEventDataCollectionHeader *header, GLogger * const logger) : log(logger), gheader(header) {
28  log->debug(CONSTRUCTOR, "GEventDataCollection");
29  gdataCollectionMap = new std::map<std::string, GDataCollection*>();
30  }
31 
38  log->debug(DESTRUCTOR, "GEventDataCollection");
39  for (auto &[keys, values] : (*gdataCollectionMap)) {
40  delete values;
41  }
42  delete gheader;
43  delete gdataCollectionMap;
44  }
45 
51  void addDetectorTrueInfoData(std::string sdName, GTrueInfoData *data);
52 
58  void addDetectorDigitizedData(std::string sdName, GDigitizedData *data);
59 
64  inline const GEventDataCollectionHeader *getHeader() const { return gheader; }
65 
70  inline const std::map<std::string, GDataCollection*> *getDataCollectionMap() const { return gdataCollectionMap; }
71 
76  inline int getEventNumber() const { return gheader->getG4LocalEvn(); }
77 
83  const std::vector<GTrueInfoData*> *getTrueInfoDataForDetector(std::string detector) const;
84 
90  const std::vector<GDigitizedData*> *getDigitizedDataForDetector(std::string detector) const;
91 
92 private:
93  GLogger * const log;
94  GEventDataCollectionHeader *gheader = nullptr;
95  std::map<std::string, GDataCollection*> *gdataCollectionMap;
96 };
97 
98 #endif
int getG4LocalEvn() const
Gets the local event number.
const std::vector< GDigitizedData * > * getDigitizedDataForDetector(std::string detector) const
Gets the digitized hit data for a specific detector.
void addDetectorTrueInfoData(std::string sdName, GTrueInfoData *data)
Adds true hit information data for a detector.
const std::map< std::string, GDataCollection * > * getDataCollectionMap() const
Gets the map of data collections.
int getEventNumber() const
Gets the event number.
void addDetectorDigitizedData(std::string sdName, GDigitizedData *data)
Adds digitized hit data for a detector.
const GEventDataCollectionHeader * getHeader() const
Gets the event header.
GEventDataCollection(GEventDataCollectionHeader *header, GLogger *const logger)
Constructs a GEventDataCollection.
const std::vector< GTrueInfoData * > * getTrueInfoDataForDetector(std::string detector) const
Gets the true hit information data for a specific detector.
~GEventDataCollection()
Destructor for GEventDataCollection.