/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Services/src/JobReportService.h
48 строк
1 KB
W. David Dagenhart
Remove remnants of SubProcess from Service System
12 июн 2025, 01:11
12 июн 2025, 01:11
7ae4f6e
Код
Авторство
О чём код?
#ifndef FWCore_Services_JobReportService_h #define FWCore_Services_JobReportService_h // -*- C++ -*- // // Package: Services // Class : JobReport // /**\class JobReportService JobReportService.h FWCore/Services/src/JobReportService.h Description: A service that collections job handling information. Usage: The JobReport service collects 'job handling' information (currently file handling) from several sources, collates the information, and at appropriate intervales, reports the information to the job report, through the MessageLogger. */ // // Original Author: Marc Paterno // #include <string> #include "FWCore/MessageLogger/interface/JobReport.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/ServiceRegistry/interface/ActivityRegistry.h" namespace edm { class ConfigurationDescriptions; namespace service { class JobReportService : public JobReport { public: JobReportService(ParameterSet const& ps, ActivityRegistry& reg); ~JobReportService(); void postEndJob(); void frameworkShutdownOnFailure(); static void fillDescriptions(edm::ConfigurationDescriptions& descriptions); }; } // namespace service } // namespace edm #endif