DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
Issues.hpp
Go to the documentation of this file.
1
9#ifndef TRIGGERALGS_INCLUDE_TRIGGERALGS_ISSUES_HPP_
10#define TRIGGERALGS_INCLUDE_TRIGGERALGS_ISSUES_HPP_
11
12#include "ers/Issue.hpp"
13#include "logging/Logging.hpp" // NOTE: if ISSUES ARE DECLARED BEFORE include logging/Logging.hpp, TLOG_DEBUG<<issue wont work.
14
15#include <string>
16
18 FactoryOverwrite,
19 "Attempted to overwrite a creator in factory with " << alg_name,
20 ((std::string)alg_name))
21
24 "Factory couldn't find: " << alg_name,
25 ((std::string)alg_name))
26
28 BadConfiguration,
29 "Bad configuration in " << alg_name,
30 ((std::string)alg_name))
31
34 "Invalid configuration error: " << conferror,
35 ((std::string)conferror))
36
37
38#endif // TRIGGERALGS_INCLUDE_TRIGGERALGS_ISSUES_HPP_
#define ERS_DECLARE_ISSUE(namespace_name, class_name, message, attributes)
Factory couldn t std::string alg_name Invalid configuration error
Definition Issues.hpp:34
Factory couldn t std::string alg_name InvalidConfiguration
Definition Issues.hpp:33
FactoryNotFound
Definition Issues.hpp:23