CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
edm::EventSetupCacheIdentifierChecker Class Reference
Inheritance diagram for edm::EventSetupCacheIdentifierChecker:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 EventSetupCacheIdentifierChecker (const edm::ParameterSet &)
 
 ~EventSetupCacheIdentifierChecker () override
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
 ~EDAnalyzer () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 

Private Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
void beginLuminosityBlock (edm::LuminosityBlock const &, edm::EventSetup const &) override
 
void beginRun (edm::Run const &, edm::EventSetup const &) override
 
void check (edm::EventSetup const &)
 
void initialize ()
 

Private Attributes

unsigned int m_index
 
ParameterSet m_pset
 
std::map< eventsetup::EventSetupRecordKey, std::vector< unsigned int > > m_recordKeysToExpectedCacheIdentifiers
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 43 of file EventSetupCacheIdentifierChecker.cc.

Constructor & Destructor Documentation

EventSetupCacheIdentifierChecker::EventSetupCacheIdentifierChecker ( const edm::ParameterSet iConfig)
explicit

Definition at line 80 of file EventSetupCacheIdentifierChecker.cc.

81  : m_pset(iConfig), m_index(0) {
82  //now do what ever initialization is needed
83 }
EventSetupCacheIdentifierChecker::~EventSetupCacheIdentifierChecker ( )
override

Definition at line 85 of file EventSetupCacheIdentifierChecker.cc.

85  {
86  // do anything here that needs to be done at desctruction time
87  // (e.g. close files, deallocate resources etc.)
88 }

Member Function Documentation

void EventSetupCacheIdentifierChecker::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 95 of file EventSetupCacheIdentifierChecker.cc.

References check().

95  {
96  check(iSetup);
97 }
void EventSetupCacheIdentifierChecker::beginLuminosityBlock ( edm::LuminosityBlock const &  ,
edm::EventSetup const &  iSetup 
)
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 121 of file EventSetupCacheIdentifierChecker.cc.

References check().

122  {
123  check(iSetup);
124 }
void EventSetupCacheIdentifierChecker::beginRun ( edm::Run const &  ,
edm::EventSetup const &  iSetup 
)
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 112 of file EventSetupCacheIdentifierChecker.cc.

References check().

112 { check(iSetup); }
void EventSetupCacheIdentifierChecker::check ( edm::EventSetup const &  iSetup)
private

Definition at line 132 of file EventSetupCacheIdentifierChecker.cc.

References Exception, edm::EventSetup::find(), initialize(), m_index, and m_recordKeysToExpectedCacheIdentifiers.

Referenced by analyze(), beginLuminosityBlock(), and beginRun().

132  {
134  initialize();
135  }
136  using namespace edm::eventsetup;
137 
139  it != itEnd;
140  ++it) {
141  auto pRecord = iSetup.find(it->first);
142  if (not pRecord) {
143  edm::LogWarning("RecordNotInIOV") << "The EventSetup Record '" << it->first.name()
144  << "' is not available for this IOV.";
145  }
146  if (it->second.size() <= m_index) {
147  throw cms::Exception("TooFewCacheIDs")
148  << "The vector of cacheIdentifiers for the record " << it->first.name() << " is too short";
149  }
150  if (pRecord && pRecord->cacheIdentifier() != it->second[m_index]) {
151  throw cms::Exception("IncorrectCacheID")
152  << "The Record " << it->first.name() << " was supposed to have cacheIdentifier: " << it->second[m_index]
153  << " but instead has " << pRecord->cacheIdentifier();
154  }
155  }
156  ++m_index;
157 }
std::map< eventsetup::EventSetupRecordKey, std::vector< unsigned int > > m_recordKeysToExpectedCacheIdentifiers
void EventSetupCacheIdentifierChecker::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 177 of file EventSetupCacheIdentifierChecker.cc.

References edm::ConfigurationDescriptions::addDefault(), edm::ParameterSetDescription::addWildcardUntracked(), and DEFINE_FWK_MODULE.

177  {
178  //The following says we do not know what parameters are allowed so do no validation
179  // Please change this to state exactly what you do use, even if it is no parameters
181  desc.addWildcardUntracked<std::vector<unsigned int> >("*")->setComment(
182  "The label is the name of an EventSetup Record while the vector contains the expected cacheIdentifier values for "
183  "each beginRun, beginLuminosityBlock and event transition");
184  descriptions.addDefault(desc);
185 }
ParameterWildcardBase * addWildcardUntracked(U const &pattern)
void addDefault(ParameterSetDescription const &psetDescription)
void EventSetupCacheIdentifierChecker::initialize ( )
private

Definition at line 159 of file EventSetupCacheIdentifierChecker.cc.

References edm::eventsetup::heterocontainer::HCTypeTag::findType(), edm::ParameterSet::getParameterNamesForType(), edm::ParameterSet::getUntrackedParameter(), m_pset, m_recordKeysToExpectedCacheIdentifiers, dataset::name, and edm::eventsetup::EventSetupRecordKey::type().

Referenced by check().

159  {
160  std::vector<std::string> recordNames{m_pset.getParameterNamesForType<std::vector<unsigned int> >(false)};
161 
162  for (auto const& name : recordNames) {
164  if (recordKey.type() == eventsetup::EventSetupRecordKey::TypeTag()) {
165  //record not found
166  edm::LogWarning("DataGetter") << "Record \"" << name << "\" does not exist " << std::endl;
167 
168  continue;
169  }
170 
172  std::make_pair(recordKey, m_pset.getUntrackedParameter<std::vector<unsigned int> >(name)));
173  }
174 }
T getUntrackedParameter(std::string const &, T const &) const
static HCTypeTag findType(char const *iTypeName)
find a type based on the types name, if not found will return default HCTypeTag
std::vector< std::string > getParameterNamesForType(bool trackiness=true) const
Definition: ParameterSet.h:169
std::map< eventsetup::EventSetupRecordKey, std::vector< unsigned int > > m_recordKeysToExpectedCacheIdentifiers
heterocontainer::HCTypeTag TypeTag

Member Data Documentation

unsigned int edm::EventSetupCacheIdentifierChecker::m_index
private

Definition at line 65 of file EventSetupCacheIdentifierChecker.cc.

Referenced by check().

ParameterSet edm::EventSetupCacheIdentifierChecker::m_pset
private

Definition at line 63 of file EventSetupCacheIdentifierChecker.cc.

Referenced by initialize().

std::map<eventsetup::EventSetupRecordKey, std::vector<unsigned int> > edm::EventSetupCacheIdentifierChecker::m_recordKeysToExpectedCacheIdentifiers
private

Definition at line 64 of file EventSetupCacheIdentifierChecker.cc.

Referenced by check(), and initialize().