CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Protected Member Functions | Private Attributes
edm::OrphanHandleBase Class Reference

#include <OrphanHandleBase.h>

Inheritance diagram for edm::OrphanHandleBase:
edm::OrphanHandle< T > edm::TestHandle< T > edm::OrphanHandle< reco::GsfElectronCollection > edm::OrphanHandle< reco::TrackCollection > edm::OrphanHandle< TrackCollection >

Public Member Functions

void clear ()
 
ProductID id () const
 
bool isValid () const
 
OrphanHandleBaseoperator= (OrphanHandleBase const &rhs)
 
 OrphanHandleBase ()
 
 OrphanHandleBase (void const *iProd, ProductID const &iId)
 
void swap (OrphanHandleBase &other)
 
 ~OrphanHandleBase ()
 

Protected Member Functions

void const * productStorage () const
 

Private Attributes

ProductID id_
 
void const * product_
 

Detailed Description

Definition at line 28 of file OrphanHandleBase.h.

Constructor & Destructor Documentation

edm::OrphanHandleBase::OrphanHandleBase ( )
inline

Definition at line 30 of file OrphanHandleBase.h.

30  :
31  product_(), id_(ProductID()) {
32  }
edm::OrphanHandleBase::OrphanHandleBase ( void const *  iProd,
ProductID const &  iId 
)
inline

Definition at line 34 of file OrphanHandleBase.h.

References assert().

34  :
35  product_(iProd), id_(iId) {
36  assert(iProd);
37  }
assert(m_qm.get())
edm::OrphanHandleBase::~OrphanHandleBase ( )
inline

Definition at line 39 of file OrphanHandleBase.h.

39 {}

Member Function Documentation

void edm::OrphanHandleBase::clear ( void  )
inline
ProductID edm::OrphanHandleBase::id ( void  ) const
bool edm::OrphanHandleBase::isValid ( void  ) const
inline
OrphanHandleBase& edm::OrphanHandleBase::operator= ( OrphanHandleBase const &  rhs)
inline

Definition at line 52 of file OrphanHandleBase.h.

References swap(), and groupFilesInBlocks::temp.

52  {
54  this->swap(temp);
55  return *this;
56  }
void swap(OrphanHandleBase &other)
void const * edm::OrphanHandleBase::productStorage ( ) const
protected

Definition at line 5 of file OrphanHandleBase.cc.

References product_.

5  {
6  return product_;
7  }
void edm::OrphanHandleBase::swap ( OrphanHandleBase other)
inline

Definition at line 46 of file OrphanHandleBase.h.

References id_, product_, and std::swap().

Referenced by operator=(), and edm::swap().

46  {
47  using std::swap;
48  swap(product_, other.product_);
49  std::swap(id_, other.id_);
50  }
void swap(OrphanHandleBase &other)
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)

Member Data Documentation

ProductID edm::OrphanHandleBase::id_
private

Definition at line 69 of file OrphanHandleBase.h.

Referenced by clear(), id(), isValid(), and swap().

void const* edm::OrphanHandleBase::product_
private

Definition at line 68 of file OrphanHandleBase.h.

Referenced by clear(), isValid(), productStorage(), and swap().