CMS 3D CMS Logo

MergeableCounter.cc
Go to the documentation of this file.
3 #include <ostream>
4 #include <utility>
5 
6 namespace edm {
7 
9  if (a.value > 0 && value + a.value < a.value) {
10  edm::LogWarning("MergeableCounter|ProductsNotMergeable")
11  << "The merge would lead to an overflow of the counter" << std::endl;
12  return false;
13  }
14  value += a.value;
15  return true;
16  }
17 
19 } // namespace edm
bool mergeProduct(MergeableCounter const &newThing)
void swap(Association< C > &lhs, Association< C > &rhs)
Definition: Association.h:112
void swap(MergeableCounter &iOther)
Definition: value.py:1
HLT enums.
double a
Definition: hdecay.h:121
Log< level::Warning, false > LogWarning