CMS 3D CMS Logo

MultiAssociation.cc
Go to the documentation of this file.
1 #include <algorithm>
5 
7 using edm::ProductID;
8 
9 IndexRangeAssociation::range
10 IndexRangeAssociation::get(const ProductID &id, unsigned int key) const {
11  typedef IndexRangeAssociation::id_offset_vector::const_iterator iter;
12  iter pos = std::lower_bound(id_offsets_.begin(), id_offsets_.end(), id, IDComparator());
13  if ((pos == id_offsets_.end()) || (pos->first != id)) {
14  throw cms::Exception("Bad Key") << "Product ID " << id << " not found in this IndexRangeAssociation\n";
15  }
16  // === Do we want this check ? I would say yes, even if it costs some extra CPU cycles
17  if ((pos + 1 != id_offsets_.end()) && (pos->second + key >= (pos+1)->second)) {
18  throw cms::Exception("Bad Offset") << "Key " << key << " goes beyond bounds "
19  << ((pos+1)->second - pos->second)
20  << " of this key collection within IndexRangeAssociation\n";
21  }
22  // === End check
23  offset_vector::const_iterator offs = ref_offsets_.begin() + pos->second + key;
24  if (offs >= ref_offsets_.end()-1) {
25  throw cms::Exception("Bad Offset") << "Key " << key << " goes beyond bounds " << ref_offsets_.size()-1 << " of this IndexRangeAssociation\n";
26  }
27  return range(*offs,*(offs+1));
28 }
29 
30 bool
32  typedef IndexRangeAssociation::id_offset_vector::const_iterator iter;
33  iter pos = std::lower_bound(id_offsets_.begin(), id_offsets_.end(), id, IDComparator());
34  return (pos != id_offsets_.end()) && (pos->first == id);
35 }
36 
37 void
39  if (isFilling_ || other.isFilling_) throw cms::Exception("Busy") << "Can't swap an IndexRangeAssociation while it's being filled!\n";
40  id_offsets_.swap(other.id_offsets_);
41  ref_offsets_.swap(other.ref_offsets_);
42 }
43 
45  assoc_(assoc), id_(id),
46  start_(assoc.ref_offsets_.empty() ? 0 : assoc.ref_offsets_.size() - 1), // must skip the end marker element
47  end_(start_ + size),
48  lastKey_(-1)
49 {
50  if (assoc_.isFilling_) throw cms::Exception("Unsupported Operation") <<
51  "IndexRangeAssociation::FastFiller: you already have one active filler for this map.\n";
52 
53  // Look if the key is there, or find the right place to insert it
54  typedef IndexRangeAssociation::id_offset_vector::iterator iter;
55  iter pos = std::lower_bound(assoc_.id_offsets_.begin(), assoc_.id_offsets_.end(), id, IndexRangeAssociation::IDComparator());
56 
57  // Check for duplicate ProductID
58  if ((pos != assoc_.id_offsets_.end()) && (pos->first == id)) throw cms::Exception("Duplicated Key") <<
59  "IndexRangeAssociation::FastFiller: there is already an entry for ProductID " << id << " in this map.\n";
60 
61  // Lock the map
62  assoc_.isFilling_ = true;
63 
64  // Insert the key, keeping id_offsets_ sorted
66 
67  int lastEnd = (assoc_.ref_offsets_.empty() ? 0 : assoc_.ref_offsets_.back());
68  assoc_.ref_offsets_.resize(end_ + 1, -1);
69  assoc_.ref_offsets_.back() = lastEnd;
70 }
71 
73  // I have to consolidate, replacing "-1" with the correct end offset.
74  // I can start from the end, as I know that the last item is never -1
75  typedef IndexRangeAssociation::offset_vector::iterator IT;
76  //std::cout << "Fixupping [" << start_ << ", " << end_ << "]" << std::endl;
77  //for(IT i = assoc_.ref_offsets_.begin() + start_; i <= assoc_.ref_offsets_.begin() + end_; ++i) { std::cout << " - " << *i << std::endl; }
78  IT top = assoc_.ref_offsets_.begin() + start_;
79  IT it = assoc_.ref_offsets_.begin() + end_;
80  int offset = *it;
81  for (--it; it >= top; --it) {
82  if (*it == -1) {
83  //std::cout << " > replace *it " << *it << " with offset " << offset << " at " << (it - top) << std::endl;
84  *it = offset; // replace -1 with real end offset
85  } else {
86  //std::cout << " > replace offset " << offset << " with *it " << *it << " at " << (it - top) << std::endl;
87  offset = *it; // take as new end offset for the preceding "-1"s
88  }
89  }
90  assoc_.isFilling_ = false; // unlock
91  //std::cout << "Fixupped [" << start_ << ", " << end_ << "]" << std::endl;
92  //for(IT i = assoc_.ref_offsets_.begin() + start_; i <= assoc_.ref_offsets_.begin() + end_; ++i) { std::cout << " - " << *i << std::endl; }
93 }
94 
95 void
96 IndexRangeAssociation::FastFiller::insert(edm::ProductID id, unsigned int key, unsigned int startingOffset, unsigned int size) {
97  if (id != id_) IndexRangeAssociation::throwUnexpectedProductID(id,id_,"FastFiller::insert");
98  if (int(key) <= lastKey_) throw cms::Exception("Bad Key") <<
99  "IndexRangeAssociation::FastFiller: you must fill this in strict key order\n" <<
100  "\tLast key = " << lastKey_ << ", this key = " << key << "\n";
101  if (key >= end_) throw cms::Exception("Bad Key") <<
102  "IndexRangeAssociation::FastFiller: key index out of bounds for this collection\n" <<
103  "\tKey = " << key << ", bound = " << end_ << "\n";
104  if ((assoc_.ref_offsets_.back() != 0) && (int(startingOffset) != assoc_.ref_offsets_.back()))
105  throw cms::Exception("Bad Offset") <<
106  "IndexRangeAssociation::FastFiller: The start for this key is not the end of the preceding key.\n" <<
107  "\tThis offset = " << startingOffset << ", last key = " << lastKey_ <<
108  ", last end offset = " << assoc_.ref_offsets_.back() << "\n";
109  assoc_.ref_offsets_[start_ + key] = startingOffset;
110  lastKey_ = key;
111  assoc_.ref_offsets_.back() += size;
112 }
113 
114 void
116  throw cms::Exception("Unexpected ProductID") << where <<
117  ": found product id " << found << ", while expecting " << expected << ".\n" <<
118  "Make sure you're not mismatching references from different collections.\n";
119 }
static void throwUnexpectedProductID(ProductID found, ProductID expected, const char *where)
bool empty() const
True if it&#39;s empty (no keys)
std::vector< l1t::Jet >::iterator end_
FastFiller(IndexRangeAssociation &assoc, ProductID id, unsigned int size)
Make a filler for a collection with a given product id and size.
U second(std::pair< T, U > const &p)
void swap(IndexRangeAssociation &other)
std::vector< l1t::Jet >::iterator start_
unsigned int size() const
Size of this collection (number of keys)
int lastKey_
last key used to fill (to check that the new key must be strictly greater than lastKey_) ...
~FastFiller()
When the FastFiller goes out of scope, it unlocks the map so you can make a new one.
bool contains(ProductID id) const
True if this IndexRangeAssociation has info for this product id.
std::vector< LinkConnSpec >::const_iterator IT
std::pair< unsigned int, unsigned int > range
void insert(const RefKey &r, unsigned int startingOffset, unsigned int size)
Sets the starting offset for this key.
std::pair< edm::ProductID, unsigned int > id_off_pair
T get(const Candidate &c)
Definition: component.h:55