File indexing completed on 2024-04-06 12:12:48
0001 #ifndef EDM_ML_DEBUG
0002 #define EDM_ML_DEBUG
0003 #endif
0004
0005 #include "FWCore/Framework/interface/Frameworkfwd.h"
0006 #include "FWCore/Framework/interface/global/EDAnalyzer.h"
0007 #include "FWCore/Framework/interface/MakerMacros.h"
0008 #include "FWCore/MessageLogger/interface/MessageLogger.h"
0009 #include "FWCore/Utilities/interface/StreamID.h"
0010
0011 namespace edmtest {
0012
0013 class UnitTestClient_Nd : public edm::global::EDAnalyzer<> {
0014 public:
0015 explicit UnitTestClient_Nd(edm::ParameterSet const&) {}
0016
0017 void analyze(edm::StreamID, edm::Event const&, edm::EventSetup const&) const override;
0018 };
0019
0020 void UnitTestClient_Nd::analyze(edm::StreamID, edm::Event const&, edm::EventSetup const&) const {
0021 LogDebug("ridiculously_long_category_name_to_make_header_wrap_A") << "LogDebug was used to send this message";
0022 LogDebug("ridiculously_long_category_name_to_make_header_wrap_B") << "LogDebug was used to send this other message";
0023 edm::LogInfo("ridiculously_long_category_name_to_make_header_wrap_A") << "LogInfo was used to send this message";
0024 edm::LogInfo("ridiculously_long_category_name_to_make_header_wrap_B")
0025 << "LogInfo was used to send this other message";
0026 }
0027
0028 }
0029
0030 using edmtest::UnitTestClient_Nd;
0031 DEFINE_FWK_MODULE(UnitTestClient_Nd);