gdata
gDigitizedData.h
Go to the documentation of this file.
1 #ifndef GDIGITIZEDHIT_H
2 #define GDIGITIZEDHIT_H 1
3 
12 #include <string>
13 #include <map>
14 #include <vector>
15 #include "ghit.h"
16 #include "glogger.h"
17 
19 public:
25  GDigitizedData(GHit *ghit, GLogger * const logger);
26 
31  log->debug(DESTRUCTOR, "GDigitizedData");
32  }
33 
38  std::string getIdentityString();
39 
40  // Public interface to add data to a hit:
41  void includeVariable(std::string vname, int value);
42  void includeVariable(std::string vname, float value);
43  void includeVariable(std::string vname, std::vector<int> values);
44  void includeVariable(std::string vname, std::vector<float> values);
45 
51  const std::map<std::string, int> getIntObservablesMap(int which) const;
52 
58  const std::map<std::string, float> getFltObservablesMap(int which) const;
59 
68 
69  int getIntObservable(std::string varName);
70  float getFltObservable(std::string varName);
71 
76  inline const std::map<std::string, std::vector<int>> getArrayIntObservablesMap() const { return arrayIntObservablesMap; }
77 
82  inline const std::map<std::string, std::vector<float>> getArrayFltObservablesMap() const { return arrayFltObservablesMap; }
83 
84 private:
85  std::map<std::string, int> intObservablesMap;
86  std::map<std::string, float> fltObservablesMap;
87  std::map<std::string, std::vector<int>> arrayIntObservablesMap;
88  std::map<std::string, std::vector<float>> arrayFltObservablesMap;
89  std::vector<GIdentifier> gidentity;
90  bool validVarName(std::string varName, int which) const;
91  GLogger * const log;
92 };
93 
94 #endif
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, std::vector< float > values)
void includeVariable(std::string vname, int value)
void includeVariable(std::string vname, std::vector< int > values)
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.
const std::map< std::string, std::vector< int > > getArrayIntObservablesMap() const
Returns the map of integer array observables.
~GDigitizedData()
Destructor for GDigitizedData.
const std::map< std::string, std::vector< float > > getArrayFltObservablesMap() const
Returns the map of float array observables.