#include <ShmOutputModuleRegistry.h>
Public Member Functions | |
void | dumpRegistry () |
edm::FUShmOutputModule * | get (std::string &name) |
void | registerModule (std::string &name, edm::FUShmOutputModule *op) |
ShmOutputModuleRegistry (const edm::ParameterSet &) | |
Private Types | |
typedef std::map< std::string, edm::FUShmOutputModule * > | dct |
typedef dct::iterator | idct |
Private Member Functions | |
void | clear () |
Private Attributes | |
dct | clm_ |
Friends | |
class | FWEPWrapper |
Definition at line 18 of file ShmOutputModuleRegistry.h.
typedef std::map<std::string, edm::FUShmOutputModule*> evf::ShmOutputModuleRegistry::dct [private] |
Definition at line 27 of file ShmOutputModuleRegistry.h.
typedef dct::iterator evf::ShmOutputModuleRegistry::idct [private] |
Definition at line 28 of file ShmOutputModuleRegistry.h.
evf::ShmOutputModuleRegistry::ShmOutputModuleRegistry | ( | const edm::ParameterSet & | ps | ) |
Definition at line 7 of file ShmOuputModuleRegistry.cc.
{ }
void evf::ShmOutputModuleRegistry::clear | ( | void | ) | [private] |
Definition at line 32 of file ShmOuputModuleRegistry.cc.
References clm_.
Referenced by evf::FWEPWrapper::init().
{ clm_.clear(); }
void evf::ShmOutputModuleRegistry::dumpRegistry | ( | ) |
Definition at line 24 of file ShmOuputModuleRegistry.cc.
References clm_, and gather_cfg::cout.
edm::FUShmOutputModule * evf::ShmOutputModuleRegistry::get | ( | std::string & | name | ) |
Definition at line 16 of file ShmOuputModuleRegistry.cc.
References clm_.
Referenced by evf::fuep::TriggerReportHelpers::packTriggerReport(), and evf::FWEPWrapper::taskWebPage().
{ edm::FUShmOutputModule* retval = 0; idct it= clm_.find(name); if(it!=clm_.end()) retval = (it->second); return retval; }
void evf::ShmOutputModuleRegistry::registerModule | ( | std::string & | name, |
edm::FUShmOutputModule * | op | ||
) |
Definition at line 10 of file ShmOuputModuleRegistry.cc.
References clm_.
friend class FWEPWrapper [friend] |
Definition at line 31 of file ShmOutputModuleRegistry.h.
dct evf::ShmOutputModuleRegistry::clm_ [private] |
Definition at line 30 of file ShmOutputModuleRegistry.h.
Referenced by clear(), dumpRegistry(), get(), and registerModule().