/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/MessageService/src/HardwiredDefaults.cc
170 строк
7 KB
Chris Jones
Remove unused FwkJob category from configurations
21 окт 2020, 20:11
21 окт 2020, 20:11
81b730f
Код
Авторство
О чём код?
// ---------------------------------------------------------------------- // // HardwiredDefaults.cc // // All the hardwired defaults, organized by which JobMode they apply to // // JobModes: // JobModeGrid // JobModeAnalysis // // Initial Version: mf 6/18/07 // // Changes: // // 7/7/08 mf Statistics with different threshold (WARNING level) // // 7/10/08 mf New mode: infos --> ReleaseValidationJobMode // Statistics at INFO threshold // Default limit for INFO at 5 rather than 0 // // ---------------------------------------------------------------------- #include "FWCore/MessageService/src/MessageLoggerDefaults.h" #include <iostream> namespace edm { namespace service { edm::JobMode MessageLoggerDefaults::mode(std::string const& jm) { if (jm.empty()) return GridJobMode; // no -mode option = grid if (jm == "grid") return GridJobMode; if (jm == "infos") return ReleaseValidationJobMode; if (jm == "analysis") return AnalysisJobMode; if (jm == "nil") return NilJobMode; std::cerr << "Unrecognized Job Mode Option: " << jm << " -- defaulting to analysis mode "; return AnalysisJobMode; } void MessageLoggerDefaults::hardwireGridJobMode() { // std::cerr << " ======= hardwireGridJobMode() \n"; destinations.push_back("cerr"); categories.push_back("FwkReport"); categories.push_back("FwkSummary"); categories.push_back("Root_NoDictionary"); statistics.push_back("cerr_stats"); // cerr destination - // note that using the name cerr is OK since it is not std::cerr // but when we want to use default as a name, we have to be circumspect { Destination cerr; // PSet cerr cerr.threshold = "INFO"; // string threshold = "INFO" Category INFO_limits; // PSet INFO = { ... } INFO_limits.limit = 0; // int32 limit = 0 cerr.sev["INFO"] = INFO_limits; Category default_for_dest; // PSet default default_for_dest.limit = 10000000; // int32 limit = 10000000 cerr.category["default"] = default_for_dest; Category FwkReport; // PSet FwkReport FwkReport.limit = 10000000; // int32 limit = 10000000 FwkReport.reportEvery = 1; // int32 reportEvery = 1 cerr.category["FwkReport"] = FwkReport; Category FwkSummary; // PSet FwkSummary FwkSummary.limit = 10000000; // int32 limit = 10000000 FwkSummary.reportEvery = 1; // int32 reportEvery = 1 cerr.category["FwkSummary"] = FwkSummary; Category Root_NoDictionary; // PSet Root_NoDictionary Root_NoDictionary.limit = 0; // int32 limit = 0 cerr.category["Root_NoDictionary"] = Root_NoDictionary; destination["cerr"] = cerr; } { Destination cerr_stats; // PSet cerr_stats cerr_stats.threshold = "WARNING"; // string threshold = "WARNING" cerr_stats.output = "cerr"; // string output = "cerr" destination["cerr_stats"] = cerr_stats; } } // hardwireGridJobMode void MessageLoggerDefaults::hardwireReleaseValidationJobMode() { // std::cerr << " ======= hardwireReleaseValidationJobMode() \n"; destinations.push_back("cerr"); categories.push_back("FwkReport"); categories.push_back("FwkSummary"); categories.push_back("Root_NoDictionary"); statistics.push_back("cerr_stats"); // cerr destination - // note that using the name cerr is OK since it is not std::cerr // but when we want to use default as a name, we have to be circumspect { Destination cerr; // PSet cerr cerr.threshold = "INFO"; // string threshold = "INFO" Category INFO_limits; // PSet INFO = { ... } INFO_limits.limit = 5; // int32 limit = 5 cerr.sev["INFO"] = INFO_limits; Category default_for_dest; // PSet default default_for_dest.limit = 10000000; // int32 limit = 10000000 cerr.category["default"] = default_for_dest; Category FwkReport; // PSet FwkReport FwkReport.limit = 10000000; // int32 limit = 10000000 FwkReport.reportEvery = 1; // int32 reportEvery = 1 cerr.category["FwkReport"] = FwkReport; Category FwkSummary; // PSet FwkSummary FwkSummary.limit = 10000000; // int32 limit = 10000000 FwkSummary.reportEvery = 1; // int32 reportEvery = 1 cerr.category["FwkSummary"] = FwkSummary; Category Root_NoDictionary; // PSet Root_NoDictionary Root_NoDictionary.limit = 0; // int32 limit = 0 cerr.category["Root_NoDictionary"] = Root_NoDictionary; destination["cerr"] = cerr; } { Destination cerr_stats; // PSet cerr_stats cerr_stats.threshold = "INFO"; // string threshold = "INFO" cerr_stats.output = "cerr"; // string output = "cerr" destination["cerr_stats"] = cerr_stats; } } // hardwireReleaseValidationJobMode void MessageLoggerDefaults::hardwireAnalysisJobMode() { // std::cerr << " ======= hardwireAnalysisJobMode() \n"; destinations.push_back("warnings"); categories.push_back("FwkReport"); categories.push_back("FwkSummary"); categories.push_back("Root_NoDictionary"); statistics.push_back("cerr"); // cerr destination - // note that using the name cerr is OK since it is not std::cerr // but when we want to use default as a name, we have to be circumspect { Destination warnings; // PSet warnings warnings.threshold = "INFO"; // string threshold = "INFO" Category INFO_limits; // PSet INFO = { ... } INFO_limits.limit = 0; // int32 limit = 0 warnings.sev["INFO"] = INFO_limits; Category default_for_dest; // PSet default default_for_dest.limit = 1000; // int32 limit = 1000 warnings.category["default"] = default_for_dest; Category FwkReport; // PSet FwkReport FwkReport.limit = 10000000; // int32 limit = 10000000 FwkReport.reportEvery = 100; // int32 reportEvery = 100 warnings.category["FwkReport"] = FwkReport; Category FwkSummary; // PSet FwkSummary FwkSummary.limit = 10000000; // int32 limit = 10000000 warnings.category["FwkSummary"] = FwkSummary; Category Root_NoDictionary; // PSet Root_NoDictionary Root_NoDictionary.limit = 0; // int32 limit = 0 warnings.category["Root_NoDictionary"] = Root_NoDictionary; destination["warnings"] = warnings; } { Destination cerr; // PSet cerr cerr.threshold = "INFO"; // string threshold = "INFO" destination["cerr"] = cerr; } } // hardwireAnalysisJobMode void MessageLoggerDefaults::hardwireNilJobMode() { // std::cerr << " ======= hardwireNilJobMode() \n"; } // hardwireNilJobMode } // end of namespace service } // end of namespace edm