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  if (eventSetupPset) { // this condition is false for SubProcesses
21  numberConcurrentIOVs_ = eventSetupPset->getUntrackedParameter<unsigned int>("numberOfConcurrentIOVs");
22  if (numberConcurrentIOVs_ == 0) {
24  }
25 
26  ParameterSet const& pset(eventSetupPset->getUntrackedParameterSet("forceNumberOfConcurrentIOVs"));
27  std::vector<std::string> recordNames = pset.getParameterNames();
28  forceNumberOfConcurrentIOVs_.reserve(recordNames.size());
29  for (auto const& recordName : recordNames) {
31  forceNumberOfConcurrentIOVs_.emplace_back(recordKey, pset.getUntrackedParameter<unsigned int>(recordName));
32  }
33  std::sort(forceNumberOfConcurrentIOVs_.begin(),
35  [](auto const& left, auto const& right) { return left.first < right.first; });
36  }
37  }
38 
39  void NumberOfConcurrentIOVs::setMaxConcurrentIOVs(unsigned int nStreams, unsigned int nConcurrentLumis) {
40  maxConcurrentIOVs_ = std::min(nStreams, nConcurrentLumis);
41  }
42 
45  }
46 
48  bool printInfoMsg) const {
49  assert(numberConcurrentIOVs_ != 0);
50  auto iter = std::lower_bound(forceNumberOfConcurrentIOVs_.begin(),
52  std::make_pair(eventSetupKey, 0u),
53  [](auto const& left, auto const& right) { return left.first < right.first; });
54  if (iter != forceNumberOfConcurrentIOVs_.end() && iter->first == eventSetupKey) {
55  if (printInfoMsg && iter->second > maxConcurrentIOVs_) {
56  LogInfo("Configuration") << "For record " << eventSetupKey.name() << " you have configured " << iter->second
57  << " concurrent IOVs.\n"
58  << "But you cannot have more concurrent IOVs than lumis or streams.\n"
59  << "There will not be more than " << maxConcurrentIOVs_ << " concurrent IOVs.\n";
60  }
61  return std::min(iter->second, maxConcurrentIOVs_);
62  }
64  return 1;
65  }
66  if (printInfoMsg && numberConcurrentIOVs_ > maxConcurrentIOVs_) {
67  LogInfo("Configuration") << "For record " << eventSetupKey.name() << " you have configured "
68  << numberConcurrentIOVs_ << " concurrent IOVs.\n"
69  << "But you cannot have more concurrent IOVs than lumis or streams.\n"
70  << "There will not be more than " << maxConcurrentIOVs_ << " concurrent IOVs.\n";
71  }
73  }
74 
76  // Mark this as invalid
78 
79  // Free up memory
81  std::vector<std::pair<EventSetupRecordKey, unsigned int>>().swap(forceNumberOfConcurrentIOVs_);
82  }
83  } // namespace eventsetup
84 } // namespace edm
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
ParameterSet getUntrackedParameterSet(std::string const &name, ParameterSet const &defaultValue) const
void fillRecordsNotAllowingConcurrentIOVs(EventSetupProvider const &)
std::set< EventSetupRecordKey > recordsNotAllowingConcurrentIOVs_
void swap(DataKey &a, DataKey &b)
Definition: DataKey.h:85
T min(T a, T b)
Definition: MathUtil.h:58
unsigned int numberOfConcurrentIOVs(EventSetupRecordKey const &, bool printInfoMsg=false) const
std::vector< std::pair< EventSetupRecordKey, unsigned int > > forceNumberOfConcurrentIOVs_
void fillRecordsNotAllowingConcurrentIOVs(std::set< EventSetupRecordKey > &recordsNotAllowingConcurrentIOVs) const
HLT enums.
void readConfigurationParameters(ParameterSet const *eventSetupPset)
void setMaxConcurrentIOVs(unsigned int nStreams, unsigned int nConcurrentLumis)