1 #ifndef DataFormats_Common_Ref_h
2 #define DataFormats_Common_Ref_h
115 #include "boost/functional.hpp"
118 #include <type_traits>
124 template <
typename,
typename =
void>
126 template <
typename T>
129 template <
typename C,
typename K>
132 using comparison_functor =
typename C::key_compare;
133 return comparison_functor()(lhs, rhs);
139 template <
typename C,
typename T,
typename F>
142 template <
typename T>
145 template <
typename C,
163 typedef typename boost::binary_traits<F>::second_argument_type
argument_type;
184 Ref(
C const* product,
key_type itemKey,
bool setNow =
true);
211 :
product_(iProductID, item, nullptr, transient),
index_(itemKey) {}
285 #define REF_FOR_VECTOR_ARGS \
286 std::vector<E>, typename refhelper::ValueTrait<std::vector<E>>::value, \
287 typename refhelper::FindTrait<std::vector<E>, typename refhelper::ValueTrait<std::vector<E>>::value>::value
289 template <
typename E>
300 friend class
RefVector<RefVector<std::vector<E>, T, F>, T, VF>;
301 friend class
RefVector<RefVector<std::vector<E>, T, F>, T, VBF>;
310 typedef typename boost::binary_traits<F>::second_argument_type
argument_type;
358 :
product_(iProductID, item, nullptr, transient, itemKey) {}
436 template <
typename C,
typename T,
typename F>
438 : product_(handle.
id(), nullptr, nullptr,
false), index_(itemKey) {
441 refitem::findRefItem<C, T, F, key_type>(
product_, handle.
product(), itemKey);
445 template <
typename E>
450 refitem::findRefItem<product_type, value_type, finder_type, key_type>(
455 template <
typename C,
typename T,
typename F>
457 : product_(handle.
id(), nullptr, nullptr,
false), index_(itemKey) {
460 refitem::findRefItem<C, T, F, key_type>(
product_, handle.
product(), itemKey);
464 template <
typename E>
469 refitem::findRefItem<product_type, value_type, finder_type, key_type>(
480 template <
typename C,
typename T,
typename F>
484 if (iProduct !=
nullptr) {
485 refitem::findRefItem<C, T, F, key_type>(
product_, iProduct, itemKey);
489 template <
typename E>
492 if (iProduct !=
nullptr) {
493 refitem::findRefItem<product_type, value_type, finder_type, key_type>(
product_.toRefCore(), iProduct, itemKey);
499 template <
typename C,
typename T,
typename F>
501 : product_(handle.
id(), nullptr, nullptr,
true), index_(itemKey) {
504 refitem::findRefItem<C, T, F, key_type>(
product_, handle.
product(), itemKey);
507 template <
typename E>
509 : product_(
handle.
id(), nullptr, nullptr,
true, itemKey) {
512 refitem::findRefItem<product_type, value_type, finder_type, key_type>(
517 template <
typename C,
typename T,
typename F>
519 : product_(refProd.
id(), nullptr, refProd.refCore().
productGetter(), refProd.refCore().isTransient()),
522 refitem::findRefItem<C, T, F, key_type>(
527 template <
typename E>
529 : product_(refProd.
id(), nullptr, refProd.refCore().
productGetter(), refProd.refCore().isTransient(), itemKey) {
531 refitem::findRefItem<product_type, value_type, finder_type, key_type>(
536 template <
typename C,
typename T,
typename F>
538 if (product_.isAvailable()) {
541 return isThinnedAvailable<C>(product_, index_);
544 template <
typename E>
546 if (product_.isAvailable()) {
549 return isThinnedAvailable<std::vector<E>>(product_.toRefCore(),
key());
553 template <
typename C,
typename T,
typename F>
555 return *getRefPtr<C, T, F>(product_, index_);
557 template <
typename E>
559 return *getRefPtr<REF_FOR_VECTOR_ARGS>(product_.toRefCore(),
key());
563 template <
typename C,
typename T,
typename F>
565 return getRefPtr<C, T, F>(product_, index_);
567 template <
typename E>
569 return getRefPtr<REF_FOR_VECTOR_ARGS>(product_.toRefCore(),
key());
572 template <
typename C,
typename T,
typename F>
574 return lhs.key() == rhs.key() && lhs.refCore() == rhs.refCore();
577 template <
typename C,
typename T,
typename F>
579 return !(lhs == rhs);
582 template <
typename C,
typename T,
typename F>
583 inline bool operator<(Ref<C, T, F>
const& lhs,
Ref<C, T, F> const& rhs) {
586 return (lhs.refCore() == rhs.refCore() ? compare_key<C>(lhs.key(), rhs.key()) : lhs.refCore() < rhs.refCore());
constexpr bool operator==(ELseverityLevel const &e1, ELseverityLevel const &e2) noexcept
T const * product() const
refhelper::ValueTrait< std::vector< E > >::value T
EDProductGetter const * mustBeNonZero(EDProductGetter const *prodGetter, std::string refType, ProductID const &productID)
std::remove_cv< typename std::remove_reference< argument_type >::type >::type key_type
edm::Ref< Container > Ref
bool isNonnull() const
Checks for non-null.
void checkTypeAtCompileTime(C const *)
uint16_t *__restrict__ id
refhelper::FindRefVectorUsingAdvance< RefVector< std::vector< E >, T, F > > VF
Ref(ProductID const &iProductID, T const *item, key_type itemKey, product_type const *)
Constructor for use in the various X::fillView(...) functions.
boost::binary_traits< F >::second_argument_type argument_type
void checkTypeAtCompileTime(product_type const *)
bool isTransient() const
Checks if this ref is transient (i.e. not persistable).
bool hasProductCache() const
Returns true if container referenced by the Ref has been cached.
RefCore const & refCore() const
RefCore const & refCore() const
Ref(ProductID const &iProductID, T const *item, key_type itemKey, bool transient)
Ref()
Default constructor needed for reading from persistent store. Not for direct use. ...
key_type key() const
Accessor for product key.
bool isNull() const
Checks for null.
#define REF_FOR_VECTOR_ARGS
#define CMS_CLASS_VERSION(_version_)
EDProductGetter const * productGetter(std::atomic< void const * > const &iCache)
Ref(ProductID const &iId)
ProductID id() const
Accessor for product ID.
value_type const element_type
bool isTransient() const
Checks if this ref is transient (i.e. not persistable).
bool compare_key(K const &lhs, K const &rhs)
bool operator!() const
Checks for null.
Ref(ProductID const &productID, key_type itemKey, EDProductGetter const *prodGetter)
std::vector< E > product_type
for export
EDProductGetter const * productGetter() const
Accessor for product getter.
bool isNonnull() const
Checks for non-null.
void const * productPtr() const
tuple key
prepare the HTCondor submission files and eventually submit them
static key_type invalidKey()
bool hasProductCache() const
Returns true if container referenced by the Ref has been cached.
Ref(ProductID const &iProductID, T const *item, key_type itemKey)
ProductID id() const
Accessor for product ID.
refhelper::FindRefVectorUsingAdvance< RefToBaseVector< T > > VBF
constexpr bool operator!=(ELseverityLevel const &e1, ELseverityLevel const &e2) noexcept
bool isNull() const
Checks for null.
refhelper::FindTrait< std::vector< E >, typename refhelper::ValueTrait< std::vector< E > >::value >::value F
RefCore const & refCore() const
refhelper::FindRefVectorUsingAdvance< RefVector< C, T, F > > VF
T const * product() const
refhelper::ValueTrait< std::vector< E > >::value value_type
refhelper::FindRefVectorUsingAdvance< RefToBaseVector< T > > VBF
T const * product() const
boost::binary_traits< F >::second_argument_type argument_type
Ref(ProductID const &iProductID, T const *item, key_type itemKey, bool transient)
Ref(ProductID const &iId)
Ref(ProductID const &iProductID, T const *item, key_type itemKey)
EDProductGetter const * productGetter() const
bool operator!() const
Checks for null.
Ref(ProductID const &productID, key_type itemKey, EDProductGetter const *prodGetter)
Ref()
Default constructor needed for reading from persistent store. Not for direct use. ...
RefCoreWithIndex product_
EDProductGetter const * productGetter() const
Accessor for product getter.
T const * operator->() const
Member dereference operator.
static uInt32 F(BLOWFISH_CTX *ctx, uInt32 x)
Ref(ProductID const &iProductID, T const *item, key_type itemKey, C const *)
Constructor for use in the various X::fillView(...) functions.
edm::RefVector< Container > RefVector
T const & operator*() const
Dereference operator.
key_type key() const
Accessor for product key.