From 1a8f2d699457a3481e0f8926f6d16683e9efff51 Mon Sep 17 00:00:00 2001 From: Whitney Armstrong <warmstrong@anl.gov> Date: Sun, 20 Jan 2019 01:31:49 -0600 Subject: [PATCH] new file: Logger.h --- src/include/hcana/Logger.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/include/hcana/Logger.h diff --git a/src/include/hcana/Logger.h b/src/include/hcana/Logger.h new file mode 100644 index 0000000..86165fc --- /dev/null +++ b/src/include/hcana/Logger.h @@ -0,0 +1,30 @@ +#ifndef hallc_hcana_Logger_hh +#define hallc_hcana_Logger_hh + +#include "podd2/Logger.h" + +//#include "podd2/spdlog/spdlog.h" +//#include "podd2/spdlog/sinks/stdout_color_sinks.h" //support for stdout logging +//#include "podd2/spdlog/sinks/basic_file_sink.h" // support for basic file logging + +namespace hcana { + + template <typename Base> + using RunLogging = podd2::RunLogging<Base>; + + template <typename Base> + using ConfigLogging = podd2::ConfigLogging<Base>; + + template <typename Base> + using HitLogging = podd2::HitLogging<Base>; + + template <typename Base> + using DetectorLogging = podd2::DetectorLogging<Base>; + + template <typename Base> + using SpectrometerLogging = podd2::SpectrometerLogging<Base>; + +} + + +#endif -- GitLab