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
 

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 90 of file FWLiteESSource.cc.

Member Typedef Documentation

Definition at line 97 of file FWLiteESSource.cc.

Constructor & Destructor Documentation

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

Definition at line 112 of file FWLiteESSource.cc.

113  : 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::FWLiteESSource ( const FWLiteESSource )
delete
FWLiteESSource::~FWLiteESSource ( )
override

Definition at line 115 of file FWLiteESSource.cc.

115 {}

Member Function Documentation

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 155 of file FWLiteESSource.cc.

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

155  {
157  std::vector<std::string> recordNames = m_es.namesOfAvailableRecords();
158 
159  for (std::vector<std::string>::const_iterator it = recordNames.begin(), itEnd = recordNames.end(); it != itEnd;
160  ++it) {
161  HCTypeTag t = HCTypeTag::findType(*it);
162  if (t != HCTypeTag()) {
166  m_keyToID[key] = m_es.recordID(it->c_str());
167  }
168  }
169 }
std::map< EventSetupRecordKey, fwlite::RecordID > m_keyToID
std::pair< const char *, const std::type_info * > findType(const char *iClassName)
Definition: typelookup.cc:69
void usingRecordWithKey(const EventSetupRecordKey &key)
std::vector< std::string > namesOfAvailableRecords() const
Definition: EventSetup.cc:122
fwlite::EventSetup m_es
RecordID recordID(const char *iRecordName) const
Definition: EventSetup.cc:87
void findingRecordWithKey(const eventsetup::EventSetupRecordKey &)
const FWLiteESSource& FWLiteESSource::operator= ( const FWLiteESSource )
delete
edm::eventsetup::DataProxyProvider::KeyedProxiesVector FWLiteESSource::registerProxies ( const EventSetupRecordKey iRecordKey,
unsigned int  iovIndex 
)
overrideprivatevirtual

Implements edm::eventsetup::DataProxyProvider.

Definition at line 117 of file FWLiteESSource.cc.

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

118  {
119  KeyedProxiesVector keyedProxiesVector;
121 
122  fwlite::RecordID recID = m_keyToID[iRecordKey];
123  const fwlite::Record& rec = m_es.get(recID);
124  typedef std::vector<std::pair<std::string, std::string> > TypesAndLabels;
125  TypesAndLabels typesAndLabels = rec.typeAndLabelOfAvailableData();
126 
127  std::cout << "Looking for data in record " << iRecordKey.name() << std::endl;
128  for (TypesAndLabels::const_iterator it = typesAndLabels.begin(), itEnd = typesAndLabels.end(); it != itEnd; ++it) {
129  std::cout << " need type " << it->first << std::endl;
130  HCTypeTag tt = HCTypeTag::findType(it->first);
131  if (tt != HCTypeTag()) {
132  edm::eventsetup::DataKey dk(tt, edm::eventsetup::IdTags(it->second.c_str()));
133  keyedProxiesVector.emplace_back(dk, std::make_shared<FWLiteProxy>(TypeID(tt.value()), &rec));
134  } else {
135  LogDebug("UnknownESType") << "The type '" << it->first << "' is unknown in this job";
136  std::cout << " *****FAILED*****" << std::endl;
137  }
138  }
139  return keyedProxiesVector;
140 }
#define LogDebug(id)
std::map< EventSetupRecordKey, fwlite::RecordID > m_keyToID
std::pair< const char *, const std::type_info * > findType(const char *iClassName)
Definition: typelookup.cc:69
unsigned int RecordID
Definition: EventSetup.h:63
fwlite::EventSetup m_es
std::vector< std::pair< std::string, std::string > > typeAndLabelOfAvailableData() const
Definition: Record.cc:206
std::vector< std::pair< DataKey, std::shared_ptr< DataProxy >>> KeyedProxiesVector
const Record & get(const RecordID &) const
Definition: EventSetup.cc:117
void FWLiteESSource::setIntervalFor ( const EventSetupRecordKey iKey,
const edm::IOVSyncValue iSync,
edm::ValidityInterval oIOV 
)
overrideprivatevirtual

Implements edm::EventSetupRecordIntervalFinder.

Definition at line 142 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().

144  {
145  m_es.syncTo(iSync.eventID(), iSync.time());
146 
147  const fwlite::Record& rec = m_es.get(m_keyToID[iKey]);
148  edm::IOVSyncValue endSync(rec.endSyncValue().eventID(), rec.endSyncValue().time());
149  if (rec.endSyncValue().eventID().run() == 0 && rec.endSyncValue().time().value() == 0ULL) {
150  endSync = edm::IOVSyncValue::endOfTime();
151  }
153 }
RunNumber_t run() const
Definition: EventID.h:38
std::map< EventSetupRecordKey, fwlite::RecordID > m_keyToID
void syncTo(const edm::EventID &, const edm::Timestamp &)
Definition: EventSetup.cc:66
const EventID & eventID() const
Definition: IOVSyncValue.h:40
static const IOVSyncValue & endOfTime()
Definition: IOVSyncValue.cc:82
const IOVSyncValue & startSyncValue() const
Definition: Record.cc:152
std::pair< Time_t, Time_t > ValidityInterval
Definition: Time.h:17
fwlite::EventSetup m_es
const edm::Timestamp & time() const
Definition: IOVSyncValue.h:42
const Timestamp & time() const
Definition: IOVSyncValue.h:42
const Record & get(const RecordID &) const
Definition: EventSetup.cc:117
TimeValue_t value() const
Definition: Timestamp.h:45
const edm::EventID & eventID() const
Definition: IOVSyncValue.h:40
const IOVSyncValue & endSyncValue() const
Definition: Record.cc:153

Member Data Documentation

fwlite::EventSetup FWLiteESSource::m_es
private

Definition at line 108 of file FWLiteESSource.cc.

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

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

Definition at line 107 of file FWLiteESSource.cc.

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

Definition at line 109 of file FWLiteESSource.cc.

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