1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
|
/*
* CMSSW
*/
#define CATCH_CONFIG_MAIN
#include "catch.hpp"
#include "DataFormats/Common/interface/DetSetVector.h"
#include "DataFormats/Common/interface/Ref.h"
#include "DataFormats/Common/interface/TestHandle.h"
#include "DataFormats/Provenance/interface/ProductID.h"
#include <algorithm>
#include <cassert>
#include <iterator>
#include <ostream>
#include <stdexcept>
#include <vector>
using namespace edm;
//------------------------------------------------------
// This is a sample VALUE class, almost the simplest possible.
//------------------------------------------------------
struct Empty {};
template <typename BASE>
class ValueT : public BASE {
public:
// VALUES must be default constructible
ValueT() : d_(0.0) {}
// This constructor is used for testing; it is not required by the
// concept VALUE.
explicit ValueT(double d) : d_(d) {}
// This access function is used for testing; it is not required by
// the concept VALUE.
double val() const { return d_; }
// VALUES must be destructible
~ValueT() {}
// VALUES must be LessThanComparable
bool operator<(ValueT const& other) const { return d_ < other.d_; }
// The private stuff below is all implementation detail, and not
// required by the concept VALUE.
private:
double d_;
};
typedef edm::DoNotSortUponInsertion DNS;
template <>
bool ValueT<DNS>::operator<(ValueT<DNS> const& /*other*/) const {
throw std::logic_error("You can't sort me!");
}
typedef ValueT<Empty> Value;
//typedef ValueT<DNS> Value; // NoSort;
//------------------------------------------------------
// The stream insertion operator is not required; it is used here
// for diagnostic output.
//
// It is inline to avoid multiple definition problems. Note that this
// cc file is *not* a compilation unit; it is actually an include
// file, which the build system combines with others to create a
// compilation unit.
//
//------------------------------------------------------
template <typename BASE>
std::ostream& operator<<(std::ostream& os, ValueT<BASE> const& v) {
os << " val: " << v.val();
return os;
}
typedef edm::DetSetVector<Value> coll_type;
typedef coll_type::detset detset;
void check_outer_collection_order(coll_type const& c) {
if (c.size() < 2)
return;
coll_type::const_iterator i = c.begin();
coll_type::const_iterator e = c.end();
// Invariant: sequence from prev to i is correctly ordered
coll_type::const_iterator prev(i);
++i;
for (; i != e; ++i, ++prev) {
// We don't use CPPUNIT_ASSERT because it gives us grossly
// insufficient context if a failure occurs.
REQUIRE(prev->id < i->id);
}
}
void check_inner_collection_order(detset const& d) {
if (d.data.size() < 2)
return;
detset::const_iterator i = d.data.begin();
detset::const_iterator e = d.data.end();
// Invariant: sequence from prev to i is correctly ordered
detset::const_iterator prev(i);
++i;
for (; i != e; ++i, ++prev) {
// We don't use CPPUNIT_ASSERT because it gives us grossly
// insufficient context if a failure occurs.
//
// We don't check that *prev < *i because they might be equal.
// We don't want to require an op<= or op==.
REQUIRE(!(*i < *prev));
}
}
void printDetSet(detset const& ds, std::ostream& os) {
os << "size: " << ds.data.size() << '\n' << "values: ";
std::copy(ds.data.begin(), ds.data.end(), std::ostream_iterator<detset::value_type>(os, " "));
}
void sanity_check(coll_type const& c) {
check_outer_collection_order(c);
for (coll_type::const_iterator i = c.begin(), e = c.end(); i != e; ++i) {
// printDetSet(*i, std::cerr);
// std::cerr << '\n';
check_inner_collection_order(*i);
}
}
void check_ids(coll_type const& c) {
// Long way to get all ids...
std::vector<det_id_type> all_ids;
for (coll_type::const_iterator i = c.begin(), e = c.end(); i != e; ++i) {
all_ids.push_back(i->id);
}
REQUIRE(c.size() == all_ids.size());
std::vector<det_id_type> nice_ids;
c.getIds(nice_ids);
REQUIRE(all_ids == nice_ids);
}
namespace {
template <typename T>
struct DSVGetter : edm::EDProductGetter {
DSVGetter() : edm::EDProductGetter(), prod_(nullptr) {}
WrapperBase const* getIt(ProductID const&) const override { return prod_; }
std::optional<std::tuple<edm::WrapperBase const*, unsigned int>> getThinnedProduct(ProductID const&,
unsigned int) const override {
return std::nullopt;
}
void getThinnedProducts(ProductID const& pid,
std::vector<WrapperBase const*>& wrappers,
std::vector<unsigned int>& keys) const override {}
edm::OptionalThinnedKey getThinnedKeyFrom(ProductID const&, unsigned int, ProductID const&) const override {
return std::monostate{};
}
unsigned int transitionIndex_() const override { return 0U; }
edm::Wrapper<T> const* prod_;
};
} // namespace
TEST_CASE("test DetSetVector", "[DetSetVector]") {
SECTION("detsetTest") {
//std::cerr << "\nStart DetSetVector_t detsetTest()\n";
detset d;
Value v1(1.1);
Value v2(2.2);
d.id = edm::det_id_type(3);
d.data.push_back(v1);
d.data.push_back(v2);
std::sort(d.data.begin(), d.data.end());
check_inner_collection_order(d);
//std::cerr << "\nEnd DetSetVector_t detsetTest()\n";
}
SECTION("refTest") {
coll_type c;
detset d3;
Value v1(1.1);
Value v2(2.2);
d3.id = edm::det_id_type(3);
d3.data.push_back(v1);
d3.data.push_back(v2);
c.insert(d3);
detset d1;
Value v1a(4.1);
Value v2a(3.2);
d1.id = edm::det_id_type(1);
d1.data.push_back(v1a);
d1.data.push_back(v2a);
c.insert(d1);
c.post_insert();
auto pC = std::make_unique<coll_type>(c);
edm::Wrapper<coll_type> wrapper(std::move(pC));
DSVGetter<coll_type> theGetter;
theGetter.prod_ = &wrapper;
typedef edm::Ref<coll_type, detset> RefDetSet;
typedef edm::Ref<coll_type, Value> RefDet;
{
RefDetSet refSet(edm::ProductID(1, 1), 0, &theGetter);
REQUIRE((!(d1 < *refSet) && !(*refSet < d1)));
}
{
RefDetSet refSet(edm::ProductID(1, 1), 1, &theGetter);
REQUIRE((!(d3 < *refSet) && !(*refSet < d3)));
}
{
RefDet refDet(edm::ProductID(1, 1), RefDet::key_type(3, 0), &theGetter);
REQUIRE((!(v1 < *refDet) && !(*refDet < v1)));
}
{
TestHandle<coll_type> pc2(&c, ProductID(1, 1));
RefDet refDet = makeRefToDetSetVector(pc2, det_id_type(3), c[3].data.begin());
REQUIRE((!(v1 < *refDet) && !(*refDet < v1)));
}
using namespace Catch::Matchers;
SECTION("bad detid") {
TestHandle<coll_type> pc2(&c, ProductID(1, 1));
REQUIRE_THROWS_MATCHES(
makeRefToDetSetVector(pc2, det_id_type(12), c[3].data.begin()),
edm::Exception,
Predicate<edm::Exception>(
[](auto const& iExcept) { return iExcept.categoryCode() == edm::errors::InvalidReference; },
"Exception has wrong category"));
}
SECTION("bad iterator") {
TestHandle<coll_type> pc2(&c, ProductID(1, 1));
REQUIRE_THROWS_MATCHES(
makeRefToDetSetVector(pc2, det_id_type(1), c[3].data.begin()),
edm::Exception,
Predicate<edm::Exception>([](auto const& x) { return x.categoryCode() == edm::errors::InvalidReference; },
"Exception has wrong category"));
}
}
SECTION("work") {
coll_type c1;
c1.post_insert();
sanity_check(c1);
REQUIRE(c1.size() == 0);
REQUIRE(c1.empty());
coll_type c2(c1);
REQUIRE(c2.size() == c1.size());
sanity_check(c2);
coll_type c;
sanity_check(c);
{
detset d;
Value v1(1.1);
Value v2(2.2);
d.id = edm::det_id_type(3);
d.data.push_back(v1);
d.data.push_back(v2);
c.insert(d);
c.post_insert();
}
sanity_check(c);
REQUIRE(c.size() == 1);
{
detset d;
Value v1(4.1);
Value v2(3.2);
d.id = edm::det_id_type(1);
d.data.push_back(v1);
d.data.push_back(v2);
c.insert(d);
c.post_insert();
}
sanity_check(c);
REQUIRE(c.size() == 2);
{
detset d;
Value v1(1.1);
Value v2(1.2);
Value v3(2.2);
d.id = edm::det_id_type(10);
d.data.push_back(v3);
d.data.push_back(v2);
d.data.push_back(v1);
c.insert(d);
c.post_insert();
}
sanity_check(c);
REQUIRE(c.size() == 3);
coll_type another;
c.swap(another);
REQUIRE(c.empty());
REQUIRE(another.size() == 3);
sanity_check(c);
sanity_check(another);
c.swap(another);
REQUIRE(c.size() == 3);
{
// We should not find anything with ID=11
coll_type::iterator i = c.find(edm::det_id_type(11));
REQUIRE(i == c.end());
coll_type::const_iterator ci = static_cast<coll_type const&>(c).find(edm::det_id_type(11));
REQUIRE(ci == c.end());
}
{
// We should find ID=10
coll_type::iterator i = c.find(edm::det_id_type(10));
REQUIRE(i != c.end());
REQUIRE(i->id == 10);
REQUIRE(i->data.size() == 3);
}
using namespace Catch::Matchers;
{
// We should not find ID=100; op[] should throw.
SECTION("op[] should throw") {
REQUIRE_THROWS_MATCHES(
c[edm::det_id_type(100)],
edm::Exception,
Predicate<edm::Exception>([](auto const& x) { return x.categoryCode() == edm::errors::InvalidReference; },
"Exception has wrong category"));
}
}
{
// We should not find ID=100; op[] should throw.
SECTION("coll_type op[] should throw") {
REQUIRE_THROWS_MATCHES(
static_cast<coll_type const&>(c)[edm::det_id_type(100)],
edm::Exception,
Predicate<edm::Exception>([](auto const& x) { return x.categoryCode() == edm::errors::InvalidReference; },
"Exception has wrong category"));
}
}
{
// We should find id = 3
coll_type const& rc = c;
coll_type::const_reference r = rc[3];
REQUIRE(r.id == edm::det_id_type(3));
REQUIRE(r.data.size() == 2);
coll_type::reference r2 = c[3];
REQUIRE(r2.id == edm::det_id_type(3));
REQUIRE(r2.data.size() == 2);
}
{
// We should not find id = 17, but a new empty DetSet should be
// inserted, carrying the correct DetId.
coll_type::size_type oldsize = c.size();
coll_type::reference r = c.find_or_insert(edm::det_id_type(17));
coll_type::size_type newsize = c.size();
REQUIRE(newsize > oldsize);
REQUIRE(newsize == (oldsize + 1));
REQUIRE(r.id == edm::det_id_type(17));
REQUIRE(r.data.size() == 0);
r.data.push_back(Value(10.1));
r.data.push_back(Value(9.1));
r.data.push_back(Value(4.0));
r.data.push_back(Value(4.0));
c.post_insert();
sanity_check(c);
}
{
// Make sure we can swap in a vector.
unsigned int const numDetSets = 20;
unsigned int const detSetSize = 14;
std::vector<detset> v;
for (unsigned int i = 0; i < numDetSets; ++i) {
detset d(i);
for (unsigned int j = 0; j < detSetSize; ++j) {
d.data.push_back(Value(100 * i + 1.0 / j));
}
v.push_back(d);
}
REQUIRE(v.size() == numDetSets);
coll_type c3(v);
c3.post_insert();
REQUIRE(v.size() == 0);
REQUIRE(c3.size() == numDetSets);
sanity_check(c3);
coll_type c4;
c4 = c3;
REQUIRE(c4.size() == numDetSets);
sanity_check(c3);
sanity_check(c4);
check_ids(c3);
}
}
}
|