CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
FWLiteESSource Class Reference
Inheritance diagram for FWLiteESSource:
edm::eventsetup::DataProxyProvider edm::EventSetupRecordIntervalFinder

Public Types

using EventSetupRecordKey = edm::eventsetup::EventSetupRecordKey
 

Public Member Functions

 FWLiteESSource (edm::ParameterSet const &iPS)
 
 FWLiteESSource (const FWLiteESSource &)=delete
 
const FWLiteESSourceoperator= (const FWLiteESSource &)=delete
 
 ~FWLiteESSource () override
 
- Public Member Functions inherited from edm::eventsetup::DataProxyProvider
void createKeyedProxies (EventSetupRecordKey const &key, unsigned int nConcurrentIOVs)
 
 DataProxyProvider ()
 
 DataProxyProvider (const DataProxyProvider &)=delete
 
const ComponentDescriptiondescription () const
 
void fillRecordsNotAllowingConcurrentIOVs (std::set< EventSetupRecordKey > &recordsNotAllowingConcurrentIOVs) const
 
virtual void initConcurrentIOVs (EventSetupRecordKey const &key, unsigned int nConcurrentIOVs)
 
bool isUsingRecord (const EventSetupRecordKey &key) const
 
KeyedProxieskeyedProxies (const EventSetupRecordKey &iRecordKey, unsigned int iovIndex=0)
 
const DataProxyProvideroperator= (const DataProxyProvider &)=delete
 
void setAppendToDataLabel (const edm::ParameterSet &)
 
void setDescription (const ComponentDescription &iDescription)
 
virtual void updateLookup (ESRecordsToProxyIndices const &)
 
std::set< EventSetupRecordKeyusingRecords () const
 
virtual ~DataProxyProvider () noexcept(false)
 
- Public Member Functions inherited from edm::EventSetupRecordIntervalFinder
bool concurrentFinder () const
 
const eventsetup::ComponentDescriptiondescriptionForFinder () const
 
 EventSetupRecordIntervalFinder ()
 
 EventSetupRecordIntervalFinder (const EventSetupRecordIntervalFinder &)=delete
 
std::set< eventsetup::EventSetupRecordKeyfindingForRecords () const
 
const ValidityIntervalfindIntervalFor (const eventsetup::EventSetupRecordKey &, const IOVSyncValue &)
 
bool nonconcurrentAndIOVNeedsUpdate (const eventsetup::EventSetupRecordKey &key, const IOVSyncValue &syncValue) const
 
const EventSetupRecordIntervalFinderoperator= (const EventSetupRecordIntervalFinder &)=delete
 
void resetInterval (const eventsetup::EventSetupRecordKey &)
 
void setDescriptionForFinder (const eventsetup::ComponentDescription &iDescription)
 
virtual ~EventSetupRecordIntervalFinder () noexcept(false)
 

Private Member Functions

void delaySettingRecords () override
 
KeyedProxiesVector registerProxies (const EventSetupRecordKey &, unsigned int iovIndex) override
 
void setIntervalFor (const EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &) override
 

Private Attributes

fwlite::EventSetup m_es
 
std::unique_ptr< TFile > m_file
 
std::map< EventSetupRecordKey, fwlite::RecordIDm_keyToID
 
std::mutex m_mutex
 
edm::SerialTaskQueue m_queue
 

Additional Inherited Members

- Static Public Member Functions inherited from edm::eventsetup::DataProxyProvider
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Types inherited from edm::eventsetup::DataProxyProvider
using KeyedProxiesVector = std::vector< std::pair< DataKey, std::shared_ptr< DataProxy > >>
 
- Protected Member Functions inherited from edm::eventsetup::DataProxyProvider
template<class T >
void usingRecord ()
 
void usingRecordWithKey (const EventSetupRecordKey &key)
 
- Protected Member Functions inherited from edm::EventSetupRecordIntervalFinder
template<class T >
void findingRecord ()
 
void findingRecordWithKey (const eventsetup::EventSetupRecordKey &)
 

Detailed Description

Description: [one line class summary]

Usage: <usage>

Definition at line 102 of file FWLiteESSource.cc.

Member Typedef Documentation

◆ EventSetupRecordKey

Definition at line 109 of file FWLiteESSource.cc.

Constructor & Destructor Documentation

◆ FWLiteESSource() [1/2]

FWLiteESSource::FWLiteESSource ( edm::ParameterSet const &  iPS)

Definition at line 126 of file FWLiteESSource.cc.

127  : m_file(TFile::Open(iPS.getParameter<std::string>("fileName").c_str())), m_es(m_file.get()) {}
std::unique_ptr< TFile > m_file
fwlite::EventSetup m_es

◆ FWLiteESSource() [2/2]

FWLiteESSource::FWLiteESSource ( const FWLiteESSource )
delete

◆ ~FWLiteESSource()

FWLiteESSource::~FWLiteESSource ( )
override

Definition at line 129 of file FWLiteESSource.cc.

129 {}

Member Function Documentation

◆ delaySettingRecords()

void FWLiteESSource::delaySettingRecords ( )
overrideprivatevirtual

override this method if you need to delay setting what records you will be using until after all modules are loaded

Reimplemented from edm::EventSetupRecordIntervalFinder.

Definition at line 169 of file FWLiteESSource.cc.

References edm::EventSetupRecordIntervalFinder::findingRecordWithKey(), edm::typelookup::findType(), crabWrapper::key, m_es, m_keyToID, fwlite::EventSetup::namesOfAvailableRecords(), fwlite::EventSetup::recordID(), submitPVValidationJobs::t, and edm::eventsetup::DataProxyProvider::usingRecordWithKey().

169  {
171  std::vector<std::string> recordNames = m_es.namesOfAvailableRecords();
172 
173  for (std::vector<std::string>::const_iterator it = recordNames.begin(), itEnd = recordNames.end(); it != itEnd;
174  ++it) {
175  HCTypeTag t = HCTypeTag::findType(*it);
176  if (t != HCTypeTag()) {
180  m_keyToID[key] = m_es.recordID(it->c_str());
181  }
182  }
183 }
std::map< EventSetupRecordKey, fwlite::RecordID > m_keyToID
std::pair< const char *, const std::type_info * > findType(const char *iClassName)
Definition: typelookup.cc:70
void usingRecordWithKey(const EventSetupRecordKey &key)
fwlite::EventSetup m_es
RecordID recordID(const char *iRecordName) const
Definition: EventSetup.cc:87
std::vector< std::string > namesOfAvailableRecords() const
Definition: EventSetup.cc:122
void findingRecordWithKey(const eventsetup::EventSetupRecordKey &)

◆ operator=()

const FWLiteESSource& FWLiteESSource::operator= ( const FWLiteESSource )
delete

◆ registerProxies()

edm::eventsetup::DataProxyProvider::KeyedProxiesVector FWLiteESSource::registerProxies ( const EventSetupRecordKey iRecordKey,
unsigned int  iovIndex 
)
overrideprivatevirtual

Implements edm::eventsetup::DataProxyProvider.

Definition at line 131 of file FWLiteESSource.cc.

References gather_cfg::cout, edm::typelookup::findType(), fwlite::EventSetup::get(), LogDebug, m_es, m_keyToID, m_mutex, m_queue, edm::eventsetup::EventSetupRecordKey::name(), groupFilesInBlocks::tt, and fwlite::Record::typeAndLabelOfAvailableData().

132  {
133  KeyedProxiesVector keyedProxiesVector;
135 
136  fwlite::RecordID recID = m_keyToID[iRecordKey];
137  const fwlite::Record& rec = m_es.get(recID);
138  typedef std::vector<std::pair<std::string, std::string> > TypesAndLabels;
139  TypesAndLabels typesAndLabels = rec.typeAndLabelOfAvailableData();
140 
141  std::cout << "Looking for data in record " << iRecordKey.name() << std::endl;
142  for (TypesAndLabels::const_iterator it = typesAndLabels.begin(), itEnd = typesAndLabels.end(); it != itEnd; ++it) {
143  std::cout << " need type " << it->first << std::endl;
144  HCTypeTag tt = HCTypeTag::findType(it->first);
145  if (tt != HCTypeTag()) {
146  edm::eventsetup::DataKey dk(tt, edm::eventsetup::IdTags(it->second.c_str()));
147  keyedProxiesVector.emplace_back(dk, std::make_shared<FWLiteProxy>(TypeID(tt.value()), &rec, &m_queue, &m_mutex));
148  } else {
149  LogDebug("UnknownESType") << "The type '" << it->first << "' is unknown in this job";
150  std::cout << " *****FAILED*****" << std::endl;
151  }
152  }
153  return keyedProxiesVector;
154 }
std::map< EventSetupRecordKey, fwlite::RecordID > m_keyToID
std::pair< const char *, const std::type_info * > findType(const char *iClassName)
Definition: typelookup.cc:70
unsigned int RecordID
Definition: EventSetup.h:65
fwlite::EventSetup m_es
std::mutex m_mutex
const Record & get(const RecordID &) const
Definition: EventSetup.cc:117
std::vector< std::pair< DataKey, std::shared_ptr< DataProxy > >> KeyedProxiesVector
edm::SerialTaskQueue m_queue
std::vector< std::pair< std::string, std::string > > typeAndLabelOfAvailableData() const
Definition: Record.cc:206
#define LogDebug(id)

◆ setIntervalFor()

void FWLiteESSource::setIntervalFor ( const EventSetupRecordKey iKey,
const edm::IOVSyncValue iSync,
edm::ValidityInterval oIOV 
)
overrideprivatevirtual

Implements edm::EventSetupRecordIntervalFinder.

Definition at line 156 of file FWLiteESSource.cc.

References edm::IOVSyncValue::endOfTime(), fwlite::Record::endSyncValue(), fwlite::IOVSyncValue::eventID(), edm::IOVSyncValue::eventID(), fwlite::EventSetup::get(), m_es, m_keyToID, edm::EventID::run(), fwlite::Record::startSyncValue(), fwlite::EventSetup::syncTo(), fwlite::IOVSyncValue::time(), edm::IOVSyncValue::time(), and edm::Timestamp::value().

158  {
159  m_es.syncTo(iSync.eventID(), iSync.time());
160 
161  const fwlite::Record& rec = m_es.get(m_keyToID[iKey]);
162  edm::IOVSyncValue endSync(rec.endSyncValue().eventID(), rec.endSyncValue().time());
163  if (rec.endSyncValue().eventID().run() == 0 && rec.endSyncValue().time().value() == 0ULL) {
164  endSync = edm::IOVSyncValue::endOfTime();
165  }
167 }
std::map< EventSetupRecordKey, fwlite::RecordID > m_keyToID
void syncTo(const edm::EventID &, const edm::Timestamp &)
Definition: EventSetup.cc:66
static const IOVSyncValue & endOfTime()
Definition: IOVSyncValue.cc:82
std::pair< Time_t, Time_t > ValidityInterval
Definition: Time.h:17
const IOVSyncValue & startSyncValue() const
Definition: Record.cc:152
fwlite::EventSetup m_es
const Record & get(const RecordID &) const
Definition: EventSetup.cc:117
const IOVSyncValue & endSyncValue() const
Definition: Record.cc:153
RunNumber_t run() const
Definition: EventID.h:38
TimeValue_t value() const
Definition: Timestamp.h:45
const edm::EventID & eventID() const
Definition: IOVSyncValue.h:40
const EventID & eventID() const
Definition: IOVSyncValue.h:40
const Timestamp & time() const
Definition: IOVSyncValue.h:42
const edm::Timestamp & time() const
Definition: IOVSyncValue.h:42

Member Data Documentation

◆ m_es

fwlite::EventSetup FWLiteESSource::m_es
private

Definition at line 120 of file FWLiteESSource.cc.

Referenced by delaySettingRecords(), registerProxies(), and setIntervalFor().

◆ m_file

std::unique_ptr<TFile> FWLiteESSource::m_file
private

Definition at line 119 of file FWLiteESSource.cc.

◆ m_keyToID

std::map<EventSetupRecordKey, fwlite::RecordID> FWLiteESSource::m_keyToID
private

Definition at line 121 of file FWLiteESSource.cc.

Referenced by delaySettingRecords(), registerProxies(), and setIntervalFor().

◆ m_mutex

std::mutex FWLiteESSource::m_mutex
private

Definition at line 123 of file FWLiteESSource.cc.

Referenced by registerProxies().

◆ m_queue

edm::SerialTaskQueue FWLiteESSource::m_queue
private

Definition at line 122 of file FWLiteESSource.cc.

Referenced by registerProxies().