10 typedef IndexRangeAssociation::id_offset_vector::const_iterator iter;
13 throw cms::Exception(
"Bad Key") <<
"Product ID " <<
id <<
" not found in this IndexRangeAssociation\n";
18 <<
" of this key collection within IndexRangeAssociation\n";
24 <<
" of this IndexRangeAssociation\n";
26 return range(*offs, *(offs + 1));
30 typedef IndexRangeAssociation::id_offset_vector::const_iterator iter;
37 throw cms::Exception(
"Busy") <<
"Can't swap an IndexRangeAssociation while it's being filled!\n";
50 <<
"IndexRangeAssociation::FastFiller: you already have one active filler for this map.\n";
53 typedef IndexRangeAssociation::id_offset_vector::iterator iter;
60 <<
"IndexRangeAssociation::FastFiller: there is already an entry for ProductID " <<
id <<
" in this map.\n";
76 typedef IndexRangeAssociation::offset_vector::iterator
IT;
79 IT top = assoc_.ref_offsets_.begin() + start_;
80 IT it = assoc_.ref_offsets_.begin() + end_;
82 for (--it; it >= top; --it) {
91 assoc_.isFilling_ =
false;
98 unsigned int startingOffset,
102 if (
int(
key) <= lastKey_)
103 throw cms::Exception(
"Bad Key") <<
"IndexRangeAssociation::FastFiller: you must fill this in strict key order\n"
104 <<
"\tLast key = " << lastKey_ <<
", this key = " <<
key <<
"\n";
107 <<
"IndexRangeAssociation::FastFiller: key index out of bounds for this collection\n"
108 <<
"\tKey = " <<
key <<
", bound = " << end_ <<
"\n";
109 if ((assoc_.ref_offsets_.back() != 0) && (
int(startingOffset) != assoc_.ref_offsets_.back()))
111 <<
"IndexRangeAssociation::FastFiller: The start for this key is not the end of the preceding key.\n"
112 <<
"\tThis offset = " << startingOffset <<
", last key = " << lastKey_
113 <<
", last end offset = " << assoc_.ref_offsets_.back() <<
"\n";
114 assoc_.ref_offsets_[start_ +
key] = startingOffset;
116 assoc_.ref_offsets_.back() +=
size;
121 << where <<
": found product id " <<
found <<
", while expecting " << expected <<
".\n"
122 <<
"Make sure you're not mismatching references from different collections.\n";