#include <OrphanHandle.h>
Public Types | |
typedef T | element_type |
Public Member Functions | |
T const & | operator* () const |
T const * | operator-> () const |
OrphanHandle (T const *prod, ProductID const &id) | |
OrphanHandle () | |
T const * | product () const |
~OrphanHandle () |
Definition at line 26 of file OrphanHandle.h.
typedef T edm::OrphanHandle< T >::element_type |
Definition at line 28 of file OrphanHandle.h.
edm::OrphanHandle< T >::OrphanHandle | ( | ) |
Definition at line 45 of file OrphanHandle.h.
: OrphanHandleBase() { }
edm::OrphanHandle< T >::OrphanHandle | ( | T const * | prod, |
ProductID const & | id | ||
) |
Definition at line 49 of file OrphanHandle.h.
: OrphanHandleBase(prod, theId) { }
edm::OrphanHandle< T >::~OrphanHandle | ( | ) |
Definition at line 53 of file OrphanHandle.h.
{}
T const & edm::OrphanHandle< T >::operator* | ( | ) | const |
Definition at line 69 of file OrphanHandle.h.
{ return *product(); }
T const * edm::OrphanHandle< T >::operator-> | ( | ) | const |
Definition at line 63 of file OrphanHandle.h.
{ return product(); }
T const * edm::OrphanHandle< T >::product | ( | ) | const |
Definition at line 57 of file OrphanHandle.h.
References compareJSON::const.
Referenced by edm::OrphanHandle< GenericObjectOwner >::operator->(), edm::Ref< C, T, F >::Ref(), and edm::RefProd< TrackingRecHitCollection >::RefProd().
{ return static_cast<T const*>(productStorage()); }