7 #include "../gdataConventions.h"
8 #include "gutilities.h"
15 log->debug(CONSTRUCTOR,
"GDigitizedData");
16 gidentity = ghit->getGID();
20 std::map<std::string, int> filteredIntObservablesMap;
21 for (
auto [varName, value] : intObservablesMap) {
22 if (validVarName(varName, which)) {
23 filteredIntObservablesMap[varName] = value;
26 log->debug(NORMAL,
" getting ", which,
" from intObservablesMap.");
27 return filteredIntObservablesMap;
31 std::map<std::string, float> filteredFltObservablesMap;
32 for (
auto [varName, value] : fltObservablesMap) {
33 if (validVarName(varName, which)) {
34 filteredFltObservablesMap[varName] = value;
37 log->debug(NORMAL,
" getting ", which,
" from fltObservablesMap.");
38 return filteredFltObservablesMap;
41 bool GDigitizedData::validVarName(std::string varName,
int which)
const {
48 }
else if (which == 1) {
57 log->debug(NORMAL,
"Including int variable ", vname,
" with value ", value);
58 intObservablesMap[vname] = value;
62 log->debug(NORMAL,
"Including float variable ", vname,
" with value ", value);
63 fltObservablesMap[vname] = value;
70 log->debug(NORMAL,
"Getting TIMEATELECTRONICS from intObservablesMap.");
75 if (intObservablesMap.find(varName) == intObservablesMap.end()) {
76 log->error(
EC__VARIABLENOTFOUND,
"variable name <" + varName +
"> not found in GDigitizedData::intObservablesMap");
78 return intObservablesMap[varName];
82 if (fltObservablesMap.find(varName) == fltObservablesMap.end()) {
83 log->error(
EC__VARIABLENOTFOUND,
"variable name <" + varName +
"> not found in GDigitizedData::fltObservablesMap");
85 return fltObservablesMap[varName];
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()) +
", ";
93 identifierString += gidentity.back().getName() +
"->" + std::to_string(gidentity.back().getValue());
94 return identifierString;
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.