mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2026-06-02 08:38:29 +02:00
12 lines
496 B
C++
12 lines
496 B
C++
#pragma once
|
|
|
|
#include "aare/RemapDefs.hpp"
|
|
|
|
namespace aare::remap::format {
|
|
static inline std::string toString(defs::Rotation);
|
|
static inline std::string toString(defs::SensorPixelGeometry const &g);
|
|
static inline std::string toString(defs::SensorStrixelGeometry const &g);
|
|
static inline std::string toString(defs::SensorGroupConfig const &c);
|
|
inline std::ostream &operator<<(std::ostream &os,
|
|
defs::SensorGroupConfig const &c);
|
|
} // namespace aare::remap::format
|