AARE
Data analysis library for PSI hybrid detectors
|
Namespaces | |
namespace | aare |
Frame class to represent a single frame of data model class should be able to work with streams coming from files or network. | |
Functions | |
template<typename T > | |
void | write_digit (std::string &s, const std::string &key, const T &value) |
write a digit to a string takes key and value and outputs->"key": value, | |
void | write_str (std::string &s, const std::string &key, const std::string &value) |
void | write_map (std::string &s, const std::string &key, const std::map< std::string, std::string > &value) |
void | write_array (std::string &s, const std::string &key, const std::array< int, 4 > &value) |
void write_array | ( | std::string & | s, |
const std::string & | key, | ||
const std::array< int, 4 > & | value | ||
) |
void write_digit | ( | std::string & | s, |
const std::string & | key, | ||
const T & | value | ||
) |
write a digit to a string takes key and value and outputs->"key": value,
T | type of value (int, uint32_t, ...) |
s | string to append to |
key | key to write |
value | value to write |
void write_map | ( | std::string & | s, |
const std::string & | key, | ||
const std::map< std::string, std::string > & | value | ||
) |
void write_str | ( | std::string & | s, |
const std::string & | key, | ||
const std::string & | value | ||
) |