EICrecon
JANA based reconstruction for the EPIC detector
Loading...
Searching...
No Matches
SpdlogFormatters.h
Go to the documentation of this file.
1#pragma once
2
3// IWYU pragma: always_keep
4// since IWYU otherwise removes this headers from output that need it
5// FIXME: this is only valid as of iwyu v21; until then use keep on includes
6
7#include <system_error>
8#include <type_traits>
9
10#include <fmt/core.h>
11#include <fmt/ostream.h>
12
13#include <edm4eic/Cov2f.h>
14#include <edm4eic/Cov3f.h>
15#include <edm4hep/Vector3f.h>
16#include <edm4hep/Vector3d.h>
17
18template <> struct fmt::formatter<edm4eic::Cov2f> : fmt::ostream_formatter {};
19template <> struct fmt::formatter<edm4eic::Cov3f> : fmt::ostream_formatter {};
20template <> struct fmt::formatter<edm4hep::Vector3f> : fmt::ostream_formatter {};
21template <> struct fmt::formatter<edm4hep::Vector3d> : fmt::ostream_formatter {};
22
23template <> struct fmt::formatter<std::error_code> : fmt::ostream_formatter {};
Definition SimCalorimeterHitProcessor.cc:35