/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWStorage/StorageFactory/test/Test.h
39 строк
2 KB
Chris Jones
Move Utilities/StorageFactory to FWStorage/StorageFactory
10 дек 2025, 18:12
10 дек 2025, 18:12
852ff34
Код
Авторство
О чём код?
#include "FWStorage/StorageFactory/interface/StorageFactory.h" #include "FWStorage/StorageFactory/interface/StorageAccount.h" #include "FWCore/MessageLogger/interface/MessageLogger.h" #include "FWCore/MessageLogger/interface/MessageLoggerQ.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/PluginManager/interface/PresenceFactory.h" #include "FWCore/PluginManager/interface/PluginManager.h" #include "FWCore/PluginManager/interface/standard.h" #include <iostream> #include <memory> static std::shared_ptr<edm::Presence> gobbleUpTheGoop; static void initTest(void) { // Initialise the plug-in manager. edmplugin::PluginManager::configure(edmplugin::standard::config()); // Enable storage accounting edm::storage::StorageFactory::getToModify()->enableAccounting(true); // This interface sucks but does the job, which is to silence // the message logger chatter about "info" or "debug" messages, // and prevent the tests from hanging forever due to lack of a // logger. try { gobbleUpTheGoop = std::shared_ptr<edm::Presence>(edm::PresenceFactory::get()->makePresence("SingleThreadMSPresence").release()); } catch (cms::Exception &e) { std::cerr << e.explainSelf() << std::endl; } const char *pset = "<destinations=-s({63657272})" // cerr ";cerr=-P(<noTimeStamps=-B(true);threshold=-S(5741524e494e47)" // WARNING ";WARNING=-P(<limit=-I(+0)>);default=-P(<limit=-I(-1)>)>)>"; edm::MessageLoggerQ::MLqMOD(new std::string); edm::MessageLoggerQ::MLqCFG(new edm::ParameterSet(pset)); edm::LogInfo("AvoidExitCrash") << "Message logger, please don't crash at exit if" << " nothing else worthwhile was printed. Thanks."; }