CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Classes | Public Types | Public Member Functions | Static Public Member Functions | Private Attributes
edm::pset::Registry Class Reference

#include <Registry.h>

Classes

struct  key_hash
 

Public Types

typedef map_type::const_iterator const_iterator
 
typedef edm::ParameterSetID key_type
 
typedef
oneapi::tbb::concurrent_unordered_map
< key_type, value_type,
key_hash
map_type
 
typedef std::map
< ParameterSetID,
ParameterSetBlob
regmap_type
 
typedef edm::ParameterSet value_type
 

Public Member Functions

const_iterator begin () const
 
void clear ()
 Not thread safe. More...
 
bool empty () const
 
const_iterator end () const
 
void fillMap (regmap_type &fillme) const
 
bool getMapped (key_type const &k, value_type &result) const
 
value_type const * getMapped (key_type const &k) const
 
bool insertMapped (value_type const &v, bool forceUpdate=false)
 
void print (std::ostream &os) const
 
size_t size () const
 

Static Public Member Functions

static Registryinstance ()
 

Private Attributes

map_type m_map
 

Detailed Description

Definition at line 26 of file Registry.h.

Member Typedef Documentation

typedef map_type::const_iterator edm::pset::Registry::const_iterator

Definition at line 61 of file Registry.h.

Definition at line 28 of file Registry.h.

typedef oneapi::tbb::concurrent_unordered_map<key_type, value_type, key_hash> edm::pset::Registry::map_type

Definition at line 60 of file Registry.h.

Fill the given map with the persistent form of each ParameterSet in the registry.

Definition at line 73 of file Registry.h.

Definition at line 29 of file Registry.h.

Member Function Documentation

const_iterator edm::pset::Registry::begin ( void  ) const
inline

Definition at line 63 of file Registry.h.

References m_map.

Referenced by HLTConfigProvider::init(), and DQMRootOutputModule::startEndFile().

63 { return m_map.begin(); }
map_type m_map
Definition: Registry.h:79
void edm::pset::Registry::clear ( void  )

Not thread safe.

Definition at line 40 of file Registry.cc.

References m_map.

Referenced by edm::EventProcessor::~EventProcessor().

40 { m_map.clear(); }
map_type m_map
Definition: Registry.h:79
bool edm::pset::Registry::empty ( void  ) const
inline

Definition at line 67 of file Registry.h.

References m_map.

67 { return m_map.empty(); }
map_type m_map
Definition: Registry.h:79
const_iterator edm::pset::Registry::end ( void  ) const
inline
void edm::pset::Registry::fillMap ( regmap_type fillme) const

Definition at line 42 of file Registry.cc.

References B2GTnPMonitor_cfi::item, and m_map.

Referenced by ParameterSetBlobProducer::globalBeginRunProduce(), and edm::StreamSerializer::serializeRegistry().

42  {
43  fillme.clear();
44  // Note: The tracked part is in the registry.
45  for (auto const& item : m_map) {
46  fillme[item.first].pset() = item.second.toString();
47  }
48  }
map_type m_map
Definition: Registry.h:79
bool edm::pset::Registry::getMapped ( key_type const &  k,
value_type result 
) const
Registry::value_type const * edm::pset::Registry::getMapped ( key_type const &  k) const

Retrieve a pointer to the value_type object with the given key. If there is no object associated with the given key 0 is returned.

Definition at line 26 of file Registry.cc.

References newFWLiteAna::found, and m_map.

26  {
27  auto it = m_map.find(k);
28  bool found = it != m_map.end();
29  return found ? &(it->second) : static_cast<value_type const*>(nullptr);
30  }
map_type m_map
Definition: Registry.h:79
bool edm::pset::Registry::insertMapped ( value_type const &  v,
bool  forceUpdate = false 
)

Insert the given value_type object into the registry. If there was already a value_type object with the same key, we don't change it. This should be OK, since it should have the same contents if the key is the same. Return 'true' if we really added the new value_type object, and 'false' if the value_type object was already present.

Definition at line 32 of file Registry.cc.

References edm::ParameterSet::id(), m_map, and findQualityFiles::v.

Referenced by edm::StreamerInputSource::deserializeAndMergeWithRegistry(), fwlite::Event::fillParameterSetRegistry(), edm::Maker::makeModule(), edm::ParameterSetConverter::noConvertParameterSets(), FWFileEntry::openFile(), edm::ParameterSet::registerFromString(), edm::ParameterSet::registerIt(), edm::RootFile::RootFile(), TFWLiteSelectorBasic::setupNewFile(), and ProvenanceDumper::work_().

32  {
33  auto wasAdded = m_map.insert(std::make_pair(v.id(), v));
34  if (forceUpdate and not wasAdded.second) {
35  wasAdded.first->second = v;
36  }
37  return wasAdded.second;
38  }
map_type m_map
Definition: Registry.h:79
Registry * edm::pset::Registry::instance ( )
static

Definition at line 12 of file Registry.cc.

References CMS_THREAD_SAFE.

Referenced by CompareToObjectMapRecord::analyze(), TrackingMonitor::analyze(), edm::EventContentAnalyzer::analyze(), TrackingMonitor::bookHistograms(), edm::StreamerInputSource::deserializeAndMergeWithRegistry(), edm::edmModuleTypeEnum(), DependencyGraph::edmModuleTypeEnum(), edm::fillParameterSetBranch(), fwlite::Event::fillParameterSetRegistry(), gen::BaseHadronizer::generateLHE(), HLTConfigProvider::getDataFrom(), getHLTConfigData(), egHLT::trigTools::getMinNrObjsRequiredByFilter(), edm::getParameterSet(), edm::Event::getProcessParameterSet(), edm::getProducerParameterSet(), edm::service::TriggerNamesService::getTrigPaths(), ParameterSetBlobProducer::globalBeginRunProduce(), HLTConfigProvider::init(), edm::StreamSchedule::initializeEarlyDelete(), edm::Maker::makeModule(), edm::ParameterSetConverter::noConvertParameterSets(), FWFileEntry::openFile(), edm::parameterSet(), edm::EventBase::parameterSetForID_(), edm::ScheduleInfo::parametersForModule(), edm::ParameterSet::registerFromString(), edm::ParameterSet::registerIt(), edm::RootFile::RootFile(), edm::StreamSerializer::serializeRegistry(), TFWLiteSelectorBasic::setupNewFile(), DQMRootOutputModule::startEndFile(), TriggerOutputBranches::triggerNames(), edm::EventBase::triggerNames_(), ProvenanceDumper::work_(), edm::AsciiOutputModule::write(), and edm::EventProcessor::~EventProcessor().

12  {
13  CMS_THREAD_SAFE static Registry s_reg;
14  return &s_reg;
15  }
#define CMS_THREAD_SAFE
void edm::pset::Registry::print ( std::ostream &  os) const

Definition at line 50 of file Registry.cc.

References B2GTnPMonitor_cfi::item, and size().

50  {
51  os << "Registry with " << size() << " entries\n";
52  for (auto const& item : *this) {
53  os << item.first << " " << item.second << '\n';
54  }
55  }
size_t size() const
Definition: Registry.h:69
size_t edm::pset::Registry::size ( void  ) const
inline

Definition at line 69 of file Registry.h.

References m_map.

Referenced by ntupleDataFormat._Collection::__iter__(), ntupleDataFormat._Collection::__len__(), and print().

69 { return m_map.size(); }
map_type m_map
Definition: Registry.h:79

Member Data Documentation

map_type edm::pset::Registry::m_map
private

Definition at line 79 of file Registry.h.

Referenced by begin(), clear(), empty(), end(), fillMap(), getMapped(), insertMapped(), and size().