CMS 3D CMS Logo

NumberOfConcurrentIOVs.cc
Go to the documentation of this file.
1 
3 
9 
10 #include <algorithm>
11 #include <cassert>
12 #include <string>
13 
14 namespace edm {
15  namespace eventsetup {
16 
17  NumberOfConcurrentIOVs::NumberOfConcurrentIOVs() : numberConcurrentIOVs_(1) {}
18 
20  unsigned int maxConcurrentIOVs,
21  bool dumpOptions) {
22  if (eventSetupPset) { // this condition is false for SubProcesses
23  maxConcurrentIOVs_ = maxConcurrentIOVs;
24  numberConcurrentIOVs_ = eventSetupPset->getUntrackedParameter<unsigned int>("numberOfConcurrentIOVs");
25  if (numberConcurrentIOVs_ == 0 || numberConcurrentIOVs_ > maxConcurrentIOVs) {
26  numberConcurrentIOVs_ = maxConcurrentIOVs;
27  }
28  if (dumpOptions) {
29  LogAbsolute("Options") << "Number of Concurrent IOVs = " << numberConcurrentIOVs_;
30  }
31 
32  ParameterSet const& pset(eventSetupPset->getUntrackedParameterSet("forceNumberOfConcurrentIOVs"));
33  std::vector<std::string> recordNames = pset.getParameterNames();
34  forceNumberOfConcurrentIOVs_.reserve(recordNames.size());
35  for (auto const& recordName : recordNames) {
37  forceNumberOfConcurrentIOVs_.emplace_back(recordKey, pset.getUntrackedParameter<unsigned int>(recordName));
38  }
41  [](auto const& left, auto const& right) { return left.first < right.first; });
42  }
43  }
44 
47  }
48 
50  bool printInfoMsg) const {
54  std::make_pair(eventSetupKey, 0u),
55  [](auto const& left, auto const& right) { return left.first < right.first; });
56  if (iter != forceNumberOfConcurrentIOVs_.end() && iter->first == eventSetupKey) {
57  if (printInfoMsg && iter->second > maxConcurrentIOVs_) {
58  LogInfo("Configuration") << "For record " << eventSetupKey.name() << " you have configured " << iter->second
59  << " concurrent IOVs.\n"
60  << "But you cannot have more concurrent IOVs than lumis or streams.\n"
61  << "There will not be more than " << maxConcurrentIOVs_ << " concurrent IOVs.\n";
62  }
63  return std::min(iter->second, maxConcurrentIOVs_);
64  }
66  return 1;
67  }
68  if (printInfoMsg && numberConcurrentIOVs_ > maxConcurrentIOVs_) {
69  LogInfo("Configuration") << "For record " << eventSetupKey.name() << " you have configured "
70  << numberConcurrentIOVs_ << " concurrent IOVs.\n"
71  << "But you cannot have more concurrent IOVs than lumis or streams.\n"
72  << "There will not be more than " << maxConcurrentIOVs_ << " concurrent IOVs.\n";
73  }
74  return numberConcurrentIOVs_;
75  }
76 
78  // Mark this as invalid
80 
81  // Free up memory
83  std::vector<std::pair<EventSetupRecordKey, unsigned int>>().swap(forceNumberOfConcurrentIOVs_);
84  }
85  } // namespace eventsetup
86 } // namespace edm
ParameterSet getUntrackedParameterSet(std::string const &name, ParameterSet const &defaultValue) const
assert(be >=bs)
T getUntrackedParameter(std::string const &, T const &) const
void fillRecordsNotAllowingConcurrentIOVs(EventSetupProvider const &)
std::set< EventSetupRecordKey > recordsNotAllowingConcurrentIOVs_
void fillRecordsNotAllowingConcurrentIOVs(std::set< EventSetupRecordKey > &recordsNotAllowingConcurrentIOVs) const
void swap(DataKey &a, DataKey &b)
Definition: DataKey.h:85
std::vector< std::pair< EventSetupRecordKey, unsigned int > > forceNumberOfConcurrentIOVs_
void readConfigurationParameters(ParameterSet const *eventSetupPset, unsigned int maxConcurrentIOVs, bool dumpOptions)
Log< level::Info, false > LogInfo
HLT enums.
Log< level::System, true > LogAbsolute
unsigned int numberOfConcurrentIOVs(EventSetupRecordKey const &, bool printInfoMsg=false) const
static HCTypeTag findType(char const *iTypeName)
find a type based on the types name, if not found will return default HCTypeTag
Definition: HCTypeTag.cc:121