|
|
Go to the documentation of this file.
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";
std::pair< unsigned int, unsigned int > range
std::pair< edm::ProductID, unsigned int > id_off_pair
void swap(IndexRangeAssociation &other)
~FastFiller()
When the FastFiller goes out of scope, it unlocks the map so you can make a new one.
U second(std::pair< T, U > const &p)
id_offset_vector id_offsets_
void insert(const RefKey &r, unsigned int startingOffset, unsigned int size)
Sets the starting offset for this key.
static void throwUnexpectedProductID(ProductID found, ProductID expected, const char *where)
FastFiller(IndexRangeAssociation &assoc, ProductID id, unsigned int size)
Make a filler for a collection with a given product id and size.
unsigned int size() const
Size of this collection (number of keys)
__host__ constexpr __device__ RandomIt lower_bound(RandomIt first, RandomIt last, const T &value, Compare comp={})
offset_vector ref_offsets_
std::vector< LinkConnSpec >::const_iterator IT
IndexRangeAssociation & assoc_
bool contains(ProductID id) const
True if this IndexRangeAssociation has info for this product id.