File indexing completed on 2024-04-06 12:13:07
0001 #ifndef FWCore_Services_JobReportService_h
0002 #define FWCore_Services_JobReportService_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024 #include <string>
0025
0026 #include "FWCore/MessageLogger/interface/JobReport.h"
0027 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0028 #include "FWCore/ServiceRegistry/interface/ActivityRegistry.h"
0029
0030 namespace edm {
0031 class ConfigurationDescriptions;
0032
0033 namespace service {
0034 class JobReportService : public JobReport {
0035 public:
0036 JobReportService(ParameterSet const& ps, ActivityRegistry& reg);
0037 ~JobReportService();
0038
0039 void postEndJob();
0040
0041 void frameworkShutdownOnFailure();
0042
0043 static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
0044 };
0045
0046 inline bool isProcessWideService(JobReportService const*) { return true; }
0047 }
0048 }
0049 #endif