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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
|
#ifndef DataFormats_Common_Ref_h
#define DataFormats_Common_Ref_h
/*----------------------------------------------------------------------
Ref: A template for a interproduct reference to a member of a product_.
----------------------------------------------------------------------*/
/**
\b Summary
The edm::Ref<> is a storable reference to an item in a stored
container. For example, you could use one to hold a reference back
to one particular track within an std::vector<> of tracks.
\b Usage
The edm::Ref<> works just like a pointer
\code
edm::Ref<FooCollection> fooPtr = ... //set the value
functionTakingConstFoo(*fooPtr); //get the Foo object
fooPtr->bar(); //call a method of the held Foo object
\endcode
The main purpose of an edm::Ref<> is it can be used as a member
datum for a class that is to be stored in the edm::Event.
\b Customization
The edm::Ref<> takes three template parameters
1) \b C: The type of the container which is holding the item
2) \b T: The type of the item. This defaults to C::value_type
3) \b F: A helper class (a functor) which knows how to find a
particular 'T' within the container given an appropriate key. The
type of the key is deduced from F::second_argument. The default
for F is refhelper::FindTrait<C, T>::value. If no specialization
of FindTrait<> is available for the combination (C, T) then it
defaults to getting the iterator to be beginning of the container
and using std::advance() to move to the appropriate key in the
container.
It is possible to customize the 'lookup' algorithm used.
1) The helper class F must provide `value_type`,
`first_argument_type` and `second_argument_type` typedefs.
2) The helper class F must define the function call operator in
such a way that the following call is well-formed:
// f is an instance of type F
// coll is an instance of type C
// k is an instance of type F::key_type
result_type r = f(coll, k);
If one wishes to make a specialized lookup the default lookup for
the container/type pair then one needs to partially specialize
the templated class edm::refhelper::FindTrait<C, T> such that it
has a typedef named 'value' which refers to the specialized
helper class (i.e., F)
The class template Ref<C, T, F> supports 'null' references.
-- a default-constructed Ref is 'null'; furthermore, it also
has an invalid (or 'null') ProductID.
-- a Ref constructed through the single-arguement constructor
that takes a ProductID is also null.
*/
/*----------------------------------------------------------------------
// This defines the public interface to the class Ref<C, T, F>.
// C is the collection type.
// T (default C::value_type) is the type of an element in the collection.
//
// ProductID productID is the product ID of the collection.
// key_type itemKey is the key of the element in the collection.
// C::value_type *itemPtr is a C++ pointer to the element
// Ref<C, T, F> const& ref is another Ref<C, T, F>
// Constructors
Ref(); // Default constructor
Ref(Ref<C, T> const& ref); // Copy constructor (default, not explicitly specified)
Ref(Handle<C> const& handle, key_type itemKey);
Ref(ProductID pid, key_type itemKey, EDProductGetter const* prodGetter);
// Destructor
virtual ~Ref() {}
// Operators and methods
Ref<C, T>& operator=(Ref<C, T> const&); // assignment (default, not explicitly specified)
T const& operator*() const; // dereference
T const* const operator->() const; // member dereference
bool operator==(Ref<C, T> const& ref) const; // equality
bool operator!=(Ref<C, T> const& ref) const; // inequality
bool operator<(Ref<C, T> const& ref) const; // ordering
bool isNonnull() const; // true if an object is referenced
bool isNull() const; // equivalent to !isNonnull()
bool operator!() const; // equivalent to !isNonnull()
----------------------------------------------------------------------*/
#include "DataFormats/Common/interface/CMS_CLASS_VERSION.h"
#include "DataFormats/Common/interface/EDProductfwd.h"
#include "DataFormats/Common/interface/EDProductGetter.h"
#include "DataFormats/Common/interface/Handle.h"
#include "DataFormats/Common/interface/OrphanHandle.h"
#include "DataFormats/Common/interface/RefCore.h"
#include "DataFormats/Common/interface/RefCoreWithIndex.h"
#include "DataFormats/Common/interface/TestHandle.h"
#include "DataFormats/Common/interface/traits.h"
#include "DataFormats/Provenance/interface/ProductID.h"
#include "boost/functional.hpp"
#include <vector>
#include <type_traits>
#include "DataFormats/Common/interface/RefTraits.h"
namespace edm {
template <typename C, typename K>
bool compare_key(K const& lhs, K const& rhs) {
if constexpr (requires { typename C::key_compare; }) {
using comparison_functor = typename C::key_compare;
return comparison_functor()(lhs, rhs);
} else {
return lhs < rhs;
}
}
template <typename C, typename T, typename F>
class RefVector;
template <typename T>
class RefToBaseVector;
template <typename C,
typename T = typename refhelper::ValueTrait<C>::value,
typename F = typename refhelper::FindTrait<C, T>::value>
class Ref {
private:
typedef refhelper::FindRefVectorUsingAdvance<RefVector<C, T, F>> VF;
typedef refhelper::FindRefVectorUsingAdvance<RefToBaseVector<T>> VBF;
friend class RefVectorIterator<C, T, F>;
friend class RefVector<C, T, F>;
friend class RefVector<RefVector<C, T, F>, T, VF>;
friend class RefVector<RefVector<C, T, F>, T, VBF>;
public:
/// for export
typedef C product_type;
typedef T value_type;
typedef T const element_type; //used for generic programming
typedef F finder_type;
typedef typename boost::binary_traits<F>::second_argument_type argument_type;
typedef typename std::remove_cv<typename std::remove_reference<argument_type>::type>::type key_type;
/// C is the type of the collection
/// T is the type of a member the collection
static key_type invalidKey() { return key_traits<key_type>::value; }
/// Default constructor needed for reading from persistent store. Not for direct use.
Ref() : product_(), index_(key_traits<key_type>::value) {}
/// General purpose constructor from handle.
Ref(Handle<C> const& handle, key_type itemKey, bool setNow = true);
/// General purpose constructor from orphan handle.
Ref(OrphanHandle<C> const& handle, key_type itemKey, bool setNow = true);
/// Constructors for ref to object that is not in an event.
// An exception will be thrown if an attempt is made to persistify
// any object containing this Ref. Also, in the future work will
// be done to throw an exception if an attempt is made to put any object
// containing this Ref into an event(or run or lumi).
Ref(C const* product, key_type itemKey, bool setNow = true);
/// Constructor from test handle.
// An exception will be thrown if an attempt is made to persistify
// any object containing this Ref. Also, in the future work will
Ref(TestHandle<C> const& handle, key_type itemKey, bool setNow = true);
/// Constructor for those users who do not have a product handle,
/// but have a pointer to a product getter (such as the EventPrincipal).
/// prodGetter will ususally be a pointer to the event principal.
Ref(ProductID const& productID, key_type itemKey, EDProductGetter const* prodGetter)
: product_(productID, nullptr, mustBeNonZero(prodGetter, "Ref", productID), false), index_(itemKey) {}
/// Constructor for use in the various X::fillView(...) functions.
// It is an error (not diagnosable at compile- or run-time) to call
// this constructor with a pointer to a T unless the pointed-to T
// object is already in a collection of type C stored in the
// Event. The given ProductID must be the id of the collection in
// the Event.
Ref(ProductID const& iProductID, T const* item, key_type itemKey, C const* /* iProduct */)
: product_(iProductID, item, 0, false), index_(itemKey) {}
Ref(ProductID const& iProductID, T const* item, key_type itemKey)
: product_(iProductID, item, nullptr, false), index_(itemKey) {}
Ref(ProductID const& iProductID, T const* item, key_type itemKey, bool transient)
: product_(iProductID, item, nullptr, transient), index_(itemKey) {}
/// Constructor that creates an invalid ("null") Ref that is
/// associated with a given product (denoted by that product's
/// ProductID).
explicit Ref(ProductID const& iId) : product_(iId, nullptr, nullptr, false), index_(key_traits<key_type>::value) {}
/// Constructor from RefProd<C> and key
Ref(RefProd<C> const& refProd, key_type itemKey);
/// Destructor
~Ref() {}
/// Dereference operator
T const& operator*() const;
/// Member dereference operator
T const* operator->() const;
/// Returns C++ pointer to the item
T const* get() const { return isNull() ? nullptr : this->operator->(); }
/// Checks for null
bool isNull() const { return !isNonnull(); }
/// Checks for non-null
bool isNonnull() const { return index_ != edm::key_traits<key_type>::value; }
/// Checks for null
bool operator!() const { return isNull(); }
/// Accessor for product ID.
ProductID id() const { return product_.id(); }
/// Accessor for product getter.
EDProductGetter const* productGetter() const { return product_.productGetter(); }
/// Accessor for product key.
key_type key() const { return index_; }
// This one just for backward compatibility. Will be removed soon.
key_type index() const { return index_; }
/// Returns true if container referenced by the Ref has been cached
bool hasProductCache() const { return product_.productPtr() != nullptr; }
/// Checks if collection is in memory or available
/// in the Event. No type checking is done.
/// This function is potentially costly as it might cause a disk
/// read (note that it does not cause the data to be cached locally)
bool isAvailable() const;
/// Checks if this ref is transient (i.e. not persistable).
bool isTransient() const { return product_.isTransient(); }
RefCore const& refCore() const { return product_; }
//Used by ROOT storage
CMS_CLASS_VERSION(10)
// private:
// Constructor from member of RefVector
Ref(RefCore const& iRefCore, key_type const& iKey) : product_(iRefCore), index_(iKey) {}
private:
// Compile time check that the argument is a C* or C const*
// or derived from it.
void checkTypeAtCompileTime(C const*) {}
RefCore product_;
key_type index_;
};
//***************************
//Specialization for a vector
//***************************
#define REF_FOR_VECTOR_ARGS \
std::vector<E>, typename refhelper::ValueTrait<std::vector<E>>::value, \
typename refhelper::FindTrait<std::vector<E>, typename refhelper::ValueTrait<std::vector<E>>::value>::value
template <typename E>
class Ref<REF_FOR_VECTOR_ARGS> {
private:
typedef typename refhelper::ValueTrait<std::vector<E>>::value T;
typedef
typename refhelper::FindTrait<std::vector<E>, typename refhelper::ValueTrait<std::vector<E>>::value>::value F;
typedef refhelper::FindRefVectorUsingAdvance<RefVector<std::vector<E>, T, F>> VF;
typedef refhelper::FindRefVectorUsingAdvance<RefToBaseVector<T>> VBF;
friend class RefVectorIterator<std::vector<E>, T, F>;
friend class RefVector<std::vector<E>, T, F>;
friend class RefVector<RefVector<std::vector<E>, T, F>, T, VF>;
friend class RefVector<RefVector<std::vector<E>, T, F>, T, VBF>;
public:
/// for export
typedef std::vector<E> product_type;
typedef typename refhelper::ValueTrait<std::vector<E>>::value value_type;
typedef value_type const element_type; //used for generic programming
typedef typename refhelper::FindTrait<std::vector<E>, typename refhelper::ValueTrait<std::vector<E>>::value>::value
finder_type;
typedef typename boost::binary_traits<F>::second_argument_type argument_type;
typedef unsigned int key_type;
/// C is the type of the collection
/// T is the type of a member the collection
static key_type invalidKey() { return key_traits<key_type>::value; }
/// Default constructor needed for reading from persistent store. Not for direct use.
Ref() : product_() {}
/// General purpose constructor from handle.
Ref(Handle<product_type> const& handle, key_type itemKey, bool setNow = true);
/// General purpose constructor from orphan handle.
Ref(OrphanHandle<product_type> const& handle, key_type itemKey, bool setNow = true);
/// Constructors for ref to object that is not in an event.
// An exception will be thrown if an attempt is made to persistify
// any object containing this Ref. Also, in the future work will
// be done to throw an exception if an attempt is made to put any object
// containing this Ref into an event(or run or lumi).
Ref(product_type const* product, key_type itemKey, bool setNow = true);
/// Constructor from test handle.
// An exception will be thrown if an attempt is made to persistify
// any object containing this Ref. Also, in the future work will
Ref(TestHandle<product_type> const& handle, key_type itemKey, bool setNow = true);
/// Constructor for those users who do not have a product handle,
/// but have a pointer to a product getter (such as the EventPrincipal).
/// prodGetter will ususally be a pointer to the event principal.
Ref(ProductID const& productID, key_type itemKey, EDProductGetter const* prodGetter)
: product_(productID, nullptr, mustBeNonZero(prodGetter, "Ref", productID), false, itemKey) {}
/// Constructor for use in the various X::fillView(...) functions.
// It is an error (not diagnosable at compile- or run-time) to call
// this constructor with a pointer to a T unless the pointed-to T
// object is already in a collection of type C stored in the
// Event. The given ProductID must be the id of the collection in
// the Event.
Ref(ProductID const& iProductID, T const* item, key_type itemKey, product_type const* /* iProduct */)
: product_(iProductID, item, nullptr, false, itemKey) {}
Ref(ProductID const& iProductID, T const* item, key_type itemKey)
: product_(iProductID, item, nullptr, false, itemKey) {}
Ref(ProductID const& iProductID, T const* item, key_type itemKey, bool transient)
: product_(iProductID, item, nullptr, transient, itemKey) {}
/// Constructor that creates an invalid ("null") Ref that is
/// associated with a given product (denoted by that product's
/// ProductID).
explicit Ref(ProductID const& iId) : product_(iId, nullptr, nullptr, false, key_traits<key_type>::value) {}
/// Constructor from RefProd<C> and key
Ref(RefProd<product_type> const& refProd, key_type itemKey);
/// Destructor
~Ref() {}
/// Dereference operator
T const& operator*() const;
/// Member dereference operator
T const* operator->() const;
/// Returns C++ pointer to the item
T const* get() const { return isNull() ? nullptr : this->operator->(); }
/// Checks for null
bool isNull() const { return !isNonnull(); }
/// Checks for non-null
bool isNonnull() const { return key() != edm::key_traits<key_type>::value; }
/// Checks for null
bool operator!() const { return isNull(); }
/// Accessor for product ID.
ProductID id() const { return product_.id(); }
/// Accessor for product getter.
EDProductGetter const* productGetter() const { return product_.productGetter(); }
/// Accessor for product key.
key_type key() const { return product_.index(); }
// This one just for backward compatibility. Will be removed soon.
key_type index() const { return product_.index(); }
/// Returns true if container referenced by the Ref has been cached
bool hasProductCache() const { return product_.productPtr() != nullptr; }
/// Checks if collection is in memory or available
/// in the Event. No type checking is done.
/// This function is potentially costly as it might cause a disk
/// read (note that it does not cause the data to be cached locally)
bool isAvailable() const;
/// Checks if this ref is transient (i.e. not persistable).
bool isTransient() const { return product_.isTransient(); }
RefCore const& refCore() const { return product_.toRefCore(); }
//Used by ROOT storage
CMS_CLASS_VERSION(11)
// private:
// Constructor from member of RefVector
Ref(RefCore const& iRefCore, key_type const& iKey) : product_(iRefCore, iKey) {}
private:
// Compile time check that the argument is a C* or C const*
// or derived from it.
void checkTypeAtCompileTime(product_type const*) {}
RefCoreWithIndex product_;
};
} // namespace edm
#include "DataFormats/Common/interface/RefProd.h"
#include "DataFormats/Common/interface/RefCoreGet.h"
#include "DataFormats/Common/interface/RefItemGet.h"
namespace edm {
/// General purpose constructor from handle.
template <typename C, typename T, typename F>
inline Ref<C, T, F>::Ref(Handle<C> const& handle, key_type itemKey, bool)
: product_(handle.id(), nullptr, nullptr, false), index_(itemKey) {
if (itemKey == key_traits<key_type>::value)
return;
refitem::findRefItem<C, T, F, key_type>(product_, handle.product(), itemKey);
}
/// General purpose constructor from handle.
template <typename E>
inline Ref<REF_FOR_VECTOR_ARGS>::Ref(Handle<std::vector<E>> const& handle, key_type itemKey, bool)
: product_(handle.id(), nullptr, nullptr, false, itemKey) {
if (itemKey == key_traits<key_type>::value)
return;
refitem::findRefItem<product_type, value_type, finder_type, key_type>(
product_.toRefCore(), handle.product(), itemKey);
}
/// General purpose constructor from orphan handle.
template <typename C, typename T, typename F>
inline Ref<C, T, F>::Ref(OrphanHandle<C> const& handle, key_type itemKey, bool)
: product_(handle.id(), nullptr, nullptr, false), index_(itemKey) {
if (itemKey == key_traits<key_type>::value)
return;
refitem::findRefItem<C, T, F, key_type>(product_, handle.product(), itemKey);
}
/// General purpose constructor from orphan handle.
template <typename E>
inline Ref<REF_FOR_VECTOR_ARGS>::Ref(OrphanHandle<std::vector<E>> const& handle, key_type itemKey, bool)
: product_(handle.id(), nullptr, nullptr, false, itemKey) {
if (itemKey == key_traits<key_type>::value)
return;
refitem::findRefItem<product_type, value_type, finder_type, key_type>(
product_.toRefCore(), handle.product(), itemKey);
}
/// Constructor for refs to object that is not in an event.
// An exception will be thrown if an attempt is made to persistify
// any object containing this Ref. Also, in the future work will
// be done to throw an exception if an attempt is made to put any object
// containing this Ref into an event(or run or lumi).
// Note: It is legal for the referenced object to be put into the event
// and persistified. It is this Ref itself that cannot be persistified.
template <typename C, typename T, typename F>
inline Ref<C, T, F>::Ref(C const* iProduct, key_type itemKey, bool)
: product_(ProductID(), nullptr, nullptr, true),
index_(iProduct != nullptr ? itemKey : key_traits<key_type>::value) {
if (iProduct != nullptr) {
refitem::findRefItem<C, T, F, key_type>(product_, iProduct, itemKey);
}
}
template <typename E>
inline Ref<REF_FOR_VECTOR_ARGS>::Ref(std::vector<E> const* iProduct, key_type itemKey, bool)
: product_(ProductID(), nullptr, nullptr, true, iProduct != nullptr ? itemKey : key_traits<key_type>::value) {
if (iProduct != nullptr) {
refitem::findRefItem<product_type, value_type, finder_type, key_type>(product_.toRefCore(), iProduct, itemKey);
}
}
/// constructor from test handle.
// An exception will be thrown if an attempt is made to persistify any object containing this Ref.
template <typename C, typename T, typename F>
inline Ref<C, T, F>::Ref(TestHandle<C> const& handle, key_type itemKey, bool)
: product_(handle.id(), nullptr, nullptr, true), index_(itemKey) {
if (itemKey == key_traits<key_type>::value)
return;
refitem::findRefItem<C, T, F, key_type>(product_, handle.product(), itemKey);
}
template <typename E>
inline Ref<REF_FOR_VECTOR_ARGS>::Ref(TestHandle<std::vector<E>> const& handle, key_type itemKey, bool)
: product_(handle.id(), nullptr, nullptr, true, itemKey) {
if (itemKey == key_traits<key_type>::value)
return;
refitem::findRefItem<product_type, value_type, finder_type, key_type>(
product_.toRefCore(), handle.product(), itemKey);
}
/// Constructor from RefProd<C> and key
template <typename C, typename T, typename F>
inline Ref<C, T, F>::Ref(RefProd<C> const& refProd, key_type itemKey)
: product_(refProd.id(), nullptr, refProd.refCore().productGetter(), refProd.refCore().isTransient()),
index_(itemKey) {
if (refProd.refCore().productPtr() != nullptr && itemKey != key_traits<key_type>::value) {
refitem::findRefItem<C, T, F, key_type>(
product_, static_cast<product_type const*>(refProd.refCore().productPtr()), itemKey);
}
}
template <typename E>
inline Ref<REF_FOR_VECTOR_ARGS>::Ref(RefProd<std::vector<E>> const& refProd, key_type itemKey)
: product_(refProd.id(), nullptr, refProd.refCore().productGetter(), refProd.refCore().isTransient(), itemKey) {
if (refProd.refCore().productPtr() != nullptr && itemKey != key_traits<key_type>::value) {
refitem::findRefItem<product_type, value_type, finder_type, key_type>(
product_.toRefCore(), static_cast<product_type const*>(refProd.refCore().productPtr()), itemKey);
}
}
template <typename C, typename T, typename F>
inline bool Ref<C, T, F>::isAvailable() const {
if (product_.isAvailable()) {
return true;
}
return isThinnedAvailable<C>(product_, index_);
}
template <typename E>
inline bool Ref<REF_FOR_VECTOR_ARGS>::isAvailable() const {
if (product_.isAvailable()) {
return true;
}
return isThinnedAvailable<std::vector<E>>(product_.toRefCore(), key());
}
/// Dereference operator
template <typename C, typename T, typename F>
inline T const& Ref<C, T, F>::operator*() const {
return *getRefPtr<C, T, F>(product_, index_);
}
template <typename E>
inline typename refhelper::ValueTrait<std::vector<E>>::value const& Ref<REF_FOR_VECTOR_ARGS>::operator*() const {
return *getRefPtr<REF_FOR_VECTOR_ARGS>(product_.toRefCore(), key());
}
/// Member dereference operator
template <typename C, typename T, typename F>
inline T const* Ref<C, T, F>::operator->() const {
return getRefPtr<C, T, F>(product_, index_);
}
template <typename E>
inline typename refhelper::ValueTrait<std::vector<E>>::value const* Ref<REF_FOR_VECTOR_ARGS>::operator->() const {
return getRefPtr<REF_FOR_VECTOR_ARGS>(product_.toRefCore(), key());
}
template <typename C, typename T, typename F>
inline bool operator==(Ref<C, T, F> const& lhs, Ref<C, T, F> const& rhs) {
return lhs.key() == rhs.key() && lhs.refCore() == rhs.refCore();
}
template <typename C, typename T, typename F>
inline bool operator!=(Ref<C, T, F> const& lhs, Ref<C, T, F> const& rhs) {
return !(lhs == rhs);
}
template <typename C, typename T, typename F>
inline bool operator<(Ref<C, T, F> const& lhs, Ref<C, T, F> const& rhs) {
/// the definition and use of compare_key<> guarantees that the ordering of Refs within
/// a collection will be identical to the ordering of the referenced objects in the collection.
return (lhs.refCore() == rhs.refCore() ? compare_key<C>(lhs.key(), rhs.key()) : lhs.refCore() < rhs.refCore());
}
} // namespace edm
//Handle specialization here
#include "DataFormats/Common/interface/HolderToVectorTrait_Ref_specialization.h"
#endif
|