gdata
gTrueInfoData.h
Go to the documentation of this file.
1 #ifndef GTRUEINFOHIT_H
2 #define GTRUEINFOHIT_H 1
3 
12 #include <string>
13 #include <map>
14 #include <vector>
15 #include "ghit.h"
16 #include "glogger.h"
17 
19 public:
25  GTrueInfoData(GHit *ghit, GLogger * const logger);
26 
31  log->debug(DESTRUCTOR, "GTrueInfoData");
32  }
33 
38  std::string getIdentityString();
39 
45  void includeVariable(std::string varName, float var);
46 
52  void includeVariable(std::string varName, std::string var);
53 
58  inline const std::map<std::string, float> getFloatVariablesMap() const { return trueInfoFloatVariablesMap; }
59 
64  inline const std::map<std::string, std::string> getStringVariablesMap() const { return trueInfoStringVariablesMap; }
65 
66 private:
67  std::map<std::string, float> trueInfoFloatVariablesMap;
68  std::map<std::string, std::string> trueInfoStringVariablesMap;
69  std::vector<GIdentifier> gidentity;
70  GLogger * const log;
71 };
72 
73 #endif
~GTrueInfoData()
Destructor for GTrueInfoData.
Definition: gTrueInfoData.h:30
const std::map< std::string, float > getFloatVariablesMap() const
Returns the map of float variables.
Definition: gTrueInfoData.h:58
void includeVariable(std::string varName, float var)
Includes a float variable in the true hit data.
const std::map< std::string, std::string > getStringVariablesMap() const
Returns the map of string variables.
Definition: gTrueInfoData.h:64
GTrueInfoData(GHit *ghit, GLogger *const logger)
Constructs a GTrueInfoData object.
Definition: gTrueInfoData.cc:9
std::string getIdentityString()
Returns a string representation of the identity.