gdata
gEventDataCollection.cc
Go to the documentation of this file.
1 
6 #include "gEventDataCollection.h"
7 
9  if (gdataCollectionMap->find(sdName) == gdataCollectionMap->end()) {
10  (*gdataCollectionMap)[sdName] = new GDataCollection(log);
11  }
12  (*gdataCollectionMap)[sdName]->addTrueInfoData(data);
13  log->info(2, "GEventDataCollection: added new detector TrueInfoData for ", sdName);
14 }
15 
17  if (gdataCollectionMap->find(sdName) == gdataCollectionMap->end()) {
18  (*gdataCollectionMap)[sdName] = new GDataCollection(log);
19  }
20  (*gdataCollectionMap)[sdName]->addDigitizedData(data);
21  log->info(2, "GEventDataCollection: added new detector DigitizedData for ", sdName);
22 }
23 
24 const std::vector<GTrueInfoData*>* GEventDataCollection::getTrueInfoDataForDetector(std::string detector) const {
25  if (gdataCollectionMap->find(detector) != gdataCollectionMap->end()) {
26  return (*gdataCollectionMap)[detector]->getTrueInfoData();
27  }
28  return nullptr;
29 }
30 
31 const std::vector<GDigitizedData*>* GEventDataCollection::getDigitizedDataForDetector(std::string detector) const {
32  if (gdataCollectionMap->find(detector) != gdataCollectionMap->end()) {
33  return (*gdataCollectionMap)[detector]->getDigitizedData();
34  }
35  return nullptr;
36 }
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.
void addDetectorDigitizedData(std::string sdName, GDigitizedData *data)
Adds digitized hit data for a detector.
const std::vector< GTrueInfoData * > * getTrueInfoDataForDetector(std::string detector) const
Gets the true hit information data for a specific detector.