Public Member Functions | |
virtual void | analyze (const edm::Event &event, const edm::EventSetup &setup) |
virtual void | beginJob (const edm::EventSetup &setup) |
DumpPSetRegistry (const edm::ParameterSet &config) | |
virtual void | endJob () |
virtual | ~DumpPSetRegistry () |
Definition at line 17 of file DumpPSetRegistry.cc.
DumpPSetRegistry::DumpPSetRegistry | ( | const edm::ParameterSet & | config | ) | [explicit] |
DumpPSetRegistry::~DumpPSetRegistry | ( | ) | [virtual] |
void DumpPSetRegistry::analyze | ( | const edm::Event & | event, | |
const edm::EventSetup & | setup | |||
) | [virtual] |
void DumpPSetRegistry::beginJob | ( | const edm::EventSetup & | setup | ) | [virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 35 of file DumpPSetRegistry.cc.
References edm::detail::ThreadSafeRegistry< KEY, T, E >::begin(), GenMuonPlsPt100GeV_cfg::cout, edm::detail::ThreadSafeRegistry< KEY, T, E >::end(), lat::endl(), i, edm::detail::ThreadSafeRegistry< KEY, T, E >::instance(), and registry.
00036 { 00037 const edm::pset::Registry * registry = edm::pset::Registry::instance(); 00038 for (edm::pset::Registry::const_iterator i = registry->begin(); i != registry->end(); ++i) 00039 std::cout << i->second << std::endl; 00040 }