gdata
gDigitizedData.cc
Go to the documentation of this file.
1 
6 #include "gDigitizedData.h"
7 #include "../gdataConventions.h"
8 #include "gutilities.h"
9 #include <string>
10 #include <map>
11 #include <vector>
12 using namespace std;
13 
14 GDigitizedData::GDigitizedData(GHit *ghit, GLogger * const logger) : log(logger) {
15  log->debug(CONSTRUCTOR, "GDigitizedData");
16  gidentity = ghit->getGID();
17 }
18 
19 std::map<std::string, int> const GDigitizedData::getIntObservablesMap(int which) const {
20  std::map<std::string, int> filteredIntObservablesMap;
21  for (auto [varName, value] : intObservablesMap) {
22  if (validVarName(varName, which)) {
23  filteredIntObservablesMap[varName] = value;
24  }
25  }
26  log->debug(NORMAL, " getting ", which, " from intObservablesMap.");
27  return filteredIntObservablesMap;
28 }
29 
30 std::map<std::string, float> const GDigitizedData::getFltObservablesMap(int which) const {
31  std::map<std::string, float> filteredFltObservablesMap;
32  for (auto [varName, value] : fltObservablesMap) {
33  if (validVarName(varName, which)) {
34  filteredFltObservablesMap[varName] = value;
35  }
36  }
37  log->debug(NORMAL, " getting ", which, " from fltObservablesMap.");
38  return filteredFltObservablesMap;
39 }
40 
41 bool GDigitizedData::validVarName(std::string varName, int which) const {
42  bool isSROVar = (varName == CRATESTRINGID || varName == SLOTSTRINGID || varName == CHANNELSTRINGID ||
43  varName == CHARGEATELECTRONICS || varName == TIMEATELECTRONICS);
44  if (which == 0) {
45  if (isSROVar) {
46  return false;
47  }
48  } else if (which == 1) {
49  if (!isSROVar) {
50  return false;
51  }
52  }
53  return true;
54 }
55 
56 void GDigitizedData::includeVariable(std::string vname, int value) {
57  log->debug(NORMAL, "Including int variable ", vname, " with value ", value);
58  intObservablesMap[vname] = value;
59 }
60 
61 void GDigitizedData::includeVariable(std::string vname, float value) {
62  log->debug(NORMAL, "Including float variable ", vname, " with value ", value);
63  fltObservablesMap[vname] = value;
64 }
65 
67  if (intObservablesMap.find(TIMEATELECTRONICS) == intObservablesMap.end()) {
69  }
70  log->debug(NORMAL, "Getting TIMEATELECTRONICS from intObservablesMap.");
71  return intObservablesMap[TIMEATELECTRONICS];
72 }
73 
74 int GDigitizedData::getIntObservable(std::string varName) {
75  if (intObservablesMap.find(varName) == intObservablesMap.end()) {
76  log->error(EC__VARIABLENOTFOUND, "variable name <" + varName + "> not found in GDigitizedData::intObservablesMap");
77  }
78  return intObservablesMap[varName];
79 }
80 
81 float GDigitizedData::getFltObservable(std::string varName) {
82  if (fltObservablesMap.find(varName) == fltObservablesMap.end()) {
83  log->error(EC__VARIABLENOTFOUND, "variable name <" + varName + "> not found in GDigitizedData::fltObservablesMap");
84  }
85  return fltObservablesMap[varName];
86 }
87 
89  std::string identifierString = "";
90  for (size_t i = 0; i < gidentity.size() - 1; i++) {
91  identifierString += gidentity[i].getName() + "->" + std::to_string(gidentity[i].getValue()) + ", ";
92  }
93  identifierString += gidentity.back().getName() + "->" + std::to_string(gidentity.back().getValue());
94  return identifierString;
95 }
const std::map< std::string, float > getFltObservablesMap(int which) const
Returns the filtered map of float observables.
GDigitizedData(GHit *ghit, GLogger *const logger)
Constructs a GDigitizedData object from a GHit.
int getTimeAtElectronics()
Gets the time at electronics.
void includeVariable(std::string vname, int value)
float getFltObservable(std::string varName)
int getIntObservable(std::string varName)
const std::map< std::string, int > getIntObservablesMap(int which) const
Returns the filtered map of integer observables.
std::string getIdentityString()
Returns a string representation of the hit identity.
constexpr const char * TIMEATELECTRONICS
Identifier for time at electronics.
constexpr const char * CRATESTRINGID
Identifier for crate.
constexpr const char * CHANNELSTRINGID
Identifier for channel.
constexpr const char * SLOTSTRINGID
Identifier for slot.
constexpr int TIMEATELECTRONICSNOTDEFINED
Default value for undefined time at electronics.
constexpr int EC__VARIABLENOTFOUND
Exit code when a variable is not found.
constexpr const char * CHARGEATELECTRONICS
Identifier for charge at electronics.