#include <WrapperInterfaceBase.h>
Public Member Functions | |
void | deleteProduct (void const *me) const |
std::type_info const & | dynamicTypeInfo () const |
void | fillPtrVector (void const *me, std::type_info const &iToType, std::vector< unsigned long > const &iIndicies, std::vector< void const * > &oPtr) const |
void | fillView (void const *me, ProductID const &id, std::vector< void const * > &view, helper_vector_ptr &helpers) const |
bool | hasIsProductEqual (void const *me) const |
bool | isMergeable (void const *me) const |
bool | isPresent (void const *me) const |
bool | isProductEqual (void const *me, void const *newProduct) const |
bool | mergeProduct (void *me, void const *newProduct) const |
void | setPtr (void const *me, std::type_info const &iToType, unsigned long iIndex, void const *&oPtr) const |
std::type_info const & | wrappedTypeInfo () const |
WrapperInterfaceBase () | |
virtual | ~WrapperInterfaceBase () |
Private Member Functions | |
virtual void | deleteProduct_ (void const *me) const =0 |
virtual void | do_fillPtrVector (void const *me, std::type_info const &iToType, std::vector< unsigned long > const &iIndicies, std::vector< void const * > &oPtr) const =0 |
virtual void | do_fillView (void const *me, ProductID const &id, std::vector< void const * > &pointers, helper_vector_ptr &helpers) const =0 |
virtual void | do_setPtr (void const *me, std::type_info const &iToType, unsigned long iIndex, void const *&oPtr) const =0 |
virtual std::type_info const & | dynamicTypeInfo_ () const =0 |
virtual bool | hasIsProductEqual_ (void const *me) const =0 |
virtual bool | isMergeable_ (void const *me) const =0 |
virtual bool | isPresent_ (void const *me) const =0 |
virtual bool | isProductEqual_ (void const *me, void const *newProduct) const =0 |
virtual bool | mergeProduct_ (void *me, void const *newProduct) const =0 |
virtual std::type_info const & | wrappedTypeInfo_ () const =0 |
Definition at line 20 of file WrapperInterfaceBase.h.
edm::WrapperInterfaceBase::WrapperInterfaceBase | ( | ) |
Definition at line 9 of file WrapperInterfaceBase.cc.
{}
edm::WrapperInterfaceBase::~WrapperInterfaceBase | ( | ) | [virtual] |
Definition at line 11 of file WrapperInterfaceBase.cc.
{}
void edm::WrapperInterfaceBase::deleteProduct | ( | void const * | me | ) | const [inline] |
Definition at line 25 of file WrapperInterfaceBase.h.
References deleteProduct_().
Referenced by edm::RootOutputTree::addBranch(), and edm::WrapperOwningHolder::EDProductDeleter::operator()().
{ deleteProduct_(me); }
virtual void edm::WrapperInterfaceBase::deleteProduct_ | ( | void const * | me | ) | const [private, pure virtual] |
Implemented in edm::WrapperInterface< T >.
Referenced by deleteProduct().
virtual void edm::WrapperInterfaceBase::do_fillPtrVector | ( | void const * | me, |
std::type_info const & | iToType, | ||
std::vector< unsigned long > const & | iIndicies, | ||
std::vector< void const * > & | oPtr | ||
) | const [private, pure virtual] |
Implemented in edm::WrapperInterface< T >.
Referenced by fillPtrVector().
virtual void edm::WrapperInterfaceBase::do_fillView | ( | void const * | me, |
ProductID const & | id, | ||
std::vector< void const * > & | pointers, | ||
helper_vector_ptr & | helpers | ||
) | const [private, pure virtual] |
Implemented in edm::WrapperInterface< T >.
Referenced by fillView().
virtual void edm::WrapperInterfaceBase::do_setPtr | ( | void const * | me, |
std::type_info const & | iToType, | ||
unsigned long | iIndex, | ||
void const *& | oPtr | ||
) | const [private, pure virtual] |
Implemented in edm::WrapperInterface< T >.
Referenced by setPtr().
std::type_info const& edm::WrapperInterfaceBase::dynamicTypeInfo | ( | ) | const [inline] |
Definition at line 64 of file WrapperInterfaceBase.h.
References dynamicTypeInfo_().
Referenced by edm::convert_handle(), edm::WrapperHolder::dynamicTypeInfo(), and edm::getProductByTag().
{ return dynamicTypeInfo_(); }
virtual std::type_info const& edm::WrapperInterfaceBase::dynamicTypeInfo_ | ( | ) | const [private, pure virtual] |
Implemented in edm::WrapperInterface< T >.
Referenced by dynamicTypeInfo().
void edm::WrapperInterfaceBase::fillPtrVector | ( | void const * | me, |
std::type_info const & | iToType, | ||
std::vector< unsigned long > const & | iIndicies, | ||
std::vector< void const * > & | oPtr | ||
) | const |
Definition at line 35 of file WrapperInterfaceBase.cc.
References do_fillPtrVector().
Referenced by edm::WrapperHolder::fillPtrVector().
{ do_fillPtrVector(me, iToType, iIndicies, oPtr); }
void edm::WrapperInterfaceBase::fillView | ( | void const * | me, |
ProductID const & | id, | ||
std::vector< void const * > & | view, | ||
helper_vector_ptr & | helpers | ||
) | const |
Definition at line 13 of file WrapperInterfaceBase.cc.
References do_fillView().
Referenced by edm::WrapperHolder::fillView(), and edm::Event::fillView_().
{ // This should never be called with non-empty arguments, or an // invalid ID; any attempt to do so is an indication of a coding // error. assert(id.isValid()); assert(pointers.empty()); assert(helpers.get() == 0); do_fillView(me, id, pointers, helpers); }
bool edm::WrapperInterfaceBase::hasIsProductEqual | ( | void const * | me | ) | const [inline] |
Definition at line 48 of file WrapperInterfaceBase.h.
References hasIsProductEqual_().
Referenced by edm::WrapperHolder::hasIsProductEqual().
{ return hasIsProductEqual_(me); }
virtual bool edm::WrapperInterfaceBase::hasIsProductEqual_ | ( | void const * | me | ) | const [private, pure virtual] |
Implemented in edm::WrapperInterface< T >.
Referenced by hasIsProductEqual().
bool edm::WrapperInterfaceBase::isMergeable | ( | void const * | me | ) | const [inline] |
Definition at line 44 of file WrapperInterfaceBase.h.
References isMergeable_().
Referenced by edm::WrapperHolder::isMergeable().
{ return isMergeable_(me); }
virtual bool edm::WrapperInterfaceBase::isMergeable_ | ( | void const * | me | ) | const [private, pure virtual] |
Implemented in edm::WrapperInterface< T >.
Referenced by isMergeable().
bool edm::WrapperInterfaceBase::isPresent | ( | void const * | me | ) | const [inline] |
Definition at line 60 of file WrapperInterfaceBase.h.
References isPresent_().
Referenced by edm::WrapperHolder::isPresent().
{ return isPresent_(me); }
virtual bool edm::WrapperInterfaceBase::isPresent_ | ( | void const * | me | ) | const [private, pure virtual] |
Implemented in edm::WrapperInterface< T >.
Referenced by isPresent().
bool edm::WrapperInterfaceBase::isProductEqual | ( | void const * | me, |
void const * | newProduct | ||
) | const [inline] |
Definition at line 56 of file WrapperInterfaceBase.h.
References isProductEqual_().
Referenced by edm::WrapperHolder::isProductEqual().
{ return isProductEqual_(me, newProduct); }
virtual bool edm::WrapperInterfaceBase::isProductEqual_ | ( | void const * | me, |
void const * | newProduct | ||
) | const [private, pure virtual] |
Implemented in edm::WrapperInterface< T >.
Referenced by isProductEqual().
bool edm::WrapperInterfaceBase::mergeProduct | ( | void * | me, |
void const * | newProduct | ||
) | const [inline] |
Definition at line 52 of file WrapperInterfaceBase.h.
References mergeProduct_().
Referenced by edm::WrapperHolder::mergeProduct().
{ return mergeProduct_(me, newProduct); }
virtual bool edm::WrapperInterfaceBase::mergeProduct_ | ( | void * | me, |
void const * | newProduct | ||
) | const [private, pure virtual] |
Implemented in edm::WrapperInterface< T >.
Referenced by mergeProduct().
void edm::WrapperInterfaceBase::setPtr | ( | void const * | me, |
std::type_info const & | iToType, | ||
unsigned long | iIndex, | ||
void const *& | oPtr | ||
) | const |
Definition at line 27 of file WrapperInterfaceBase.cc.
References do_setPtr().
Referenced by edm::WrapperHolder::setPtr().
{ do_setPtr(me, iToType, iIndex, oPtr); }
std::type_info const& edm::WrapperInterfaceBase::wrappedTypeInfo | ( | ) | const [inline] |
Definition at line 68 of file WrapperInterfaceBase.h.
References wrappedTypeInfo_().
Referenced by edm::WrapperHolder::wrappedTypeInfo().
{ return wrappedTypeInfo_(); }
virtual std::type_info const& edm::WrapperInterfaceBase::wrappedTypeInfo_ | ( | ) | const [private, pure virtual] |
Implemented in edm::WrapperInterface< T >.
Referenced by wrappedTypeInfo().