CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Attributes | Friends
edm::FwdPtr< T > Class Template Reference

#include <DataFormats/Common/interface/FwdPtr.h>

Public Types

typedef unsigned long key_type
 
typedef T value_type
 

Public Member Functions

Ptr< value_type > const & backPtr () const
 
template<typename C >
 FwdPtr (Ptr< C > f, Ptr< C > b)
 
 FwdPtr ()
 
T const * get () const
 Returns C++ pointer to the item. More...
 
bool hasProductCache () const
 
ProductID id () const
 Accessor for product ID. More...
 
bool isAvailable () const
 
bool isNonnull () const
 Checks for non-null. More...
 
bool isNull () const
 Checks for null. More...
 
bool isTransient () const
 Checks if this FwdPtr is transient (i.e. not persistable). More...
 
key_type key () const
 
bool operator! () const
 Checks for null. More...
 
T const & operator* () const
 Dereference operator. More...
 
T const * operator-> () const
 Member dereference operator. More...
 
void const * product () const
 
EDProductGetter const * productGetter () const
 Accessor for product getter. More...
 
Ptr< value_type > const & ptr () const
 
RefCore const & refCore () const
 
 ~FwdPtr ()
 Destructor. More...
 

Private Attributes

Ptr< value_typebackPtr_
 
Ptr< value_typeptr_
 

Friends

class FwdPtrVectorBase
 

Detailed Description

template<typename T>
class edm::FwdPtr< T >

Description: Persistent 'pointer' to an item in a collection where the collection is in the edm::Event

Usage: <usage>

Definition at line 41 of file FwdPtr.h.

Member Typedef Documentation

template<typename T>
typedef unsigned long edm::FwdPtr< T >::key_type

Definition at line 45 of file FwdPtr.h.

template<typename T>
typedef T edm::FwdPtr< T >::value_type

Definition at line 46 of file FwdPtr.h.

Constructor & Destructor Documentation

template<typename T>
template<typename C >
edm::FwdPtr< T >::FwdPtr ( Ptr< C >  f,
Ptr< C >  b 
)
inline

Definition at line 50 of file FwdPtr.h.

50  :
51  ptr_(f), backPtr_(b)
52  {}
double f[11][100]
double b
Definition: hdecay.h:120
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127
template<typename T>
edm::FwdPtr< T >::FwdPtr ( )
inline

Definition at line 54 of file FwdPtr.h.

54  :
55  ptr_(), backPtr_()
56  {}
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127
template<typename T>
edm::FwdPtr< T >::~FwdPtr ( )
inline

Destructor.

Definition at line 71 of file FwdPtr.h.

71 {}

Member Function Documentation

template<typename T>
Ptr<value_type> const& edm::FwdPtr< T >::backPtr ( ) const
inline

Definition at line 120 of file FwdPtr.h.

References edm::FwdPtr< T >::backPtr_.

Referenced by reco::PFCandidateWithSrcPtrFactory::operator()(), and TopProjectorFwdPtrOverlap< Top, Bottom >::operator()().

120 { return backPtr_;}
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127
template<typename T>
T const* edm::FwdPtr< T >::get ( void  ) const
inline

Returns C++ pointer to the item.

Definition at line 82 of file FwdPtr.h.

References edm::FwdPtr< T >::backPtr_, edm::Ptr< T >::get(), edm::Ptr< T >::isNonnull(), and edm::FwdPtr< T >::ptr_.

Referenced by Options.Options::__getitem__(), betterConfigParser.BetterConfigParser::__updateDict(), betterConfigParser.BetterConfigParser::getCompares(), betterConfigParser.BetterConfigParser::getGeneral(), and betterConfigParser.BetterConfigParser::getResultingSection().

82 { return ptr_.isNonnull() ? ptr_.get() : backPtr_.get();}
bool isNonnull() const
Checks for non-null.
Definition: Ptr.h:152
T const * get() const
Returns C++ pointer to the item.
Definition: Ptr.h:143
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127
template<typename T>
bool edm::FwdPtr< T >::hasProductCache ( ) const
inline

Definition at line 112 of file FwdPtr.h.

References edm::FwdPtr< T >::backPtr_, edm::Ptr< T >::hasProductCache(), and edm::FwdPtr< T >::ptr_.

112 { return ptr_.hasProductCache() || backPtr_.hasProductCache();}
bool hasProductCache() const
Definition: Ptr.h:171
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127
template<typename T>
ProductID edm::FwdPtr< T >::id ( void  ) const
inline

Accessor for product ID.

Definition at line 102 of file FwdPtr.h.

References edm::FwdPtr< T >::backPtr_, edm::Ptr< T >::id(), edm::Ptr< T >::isNonnull(), and edm::FwdPtr< T >::ptr_.

102 {return ptr_.isNonnull() ? ptr_.id() : backPtr_.id();}
bool isNonnull() const
Checks for non-null.
Definition: Ptr.h:152
ProductID id() const
Accessor for product ID.
Definition: Ptr.h:164
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127
template<typename T>
bool edm::FwdPtr< T >::isAvailable ( ) const
inline

Checks if collection is in memory or available in the event. No type checking is done.

Definition at line 96 of file FwdPtr.h.

References edm::FwdPtr< T >::backPtr_, edm::Ptr< T >::isAvailable(), and edm::FwdPtr< T >::ptr_.

96 {return ptr_.isAvailable() || backPtr_.isAvailable();}
bool isAvailable() const
Definition: Ptr.h:158
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127
template<typename T>
bool edm::FwdPtr< T >::isNonnull ( ) const
inline

Checks for non-null.

Definition at line 90 of file FwdPtr.h.

References edm::FwdPtr< T >::backPtr_, edm::Ptr< T >::isNonnull(), and edm::FwdPtr< T >::ptr_.

Referenced by edm::FwdPtr< T >::isNull().

90 {return ptr_.isNonnull() || backPtr_.isNonnull(); }
bool isNonnull() const
Checks for non-null.
Definition: Ptr.h:152
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127
template<typename T>
bool edm::FwdPtr< T >::isNull ( ) const
inline

Checks for null.

Definition at line 86 of file FwdPtr.h.

References edm::FwdPtr< T >::isNonnull().

Referenced by edm::FwdPtr< T >::operator!().

86 {return !isNonnull(); }
bool isNonnull() const
Checks for non-null.
Definition: FwdPtr.h:90
template<typename T>
bool edm::FwdPtr< T >::isTransient ( ) const
inline

Checks if this FwdPtr is transient (i.e. not persistable).

Definition at line 99 of file FwdPtr.h.

References edm::Ptr< T >::isTransient(), and edm::FwdPtr< T >::ptr_.

99 {return ptr_.isTransient();}
bool isTransient() const
Checks if this Ptr is transient (i.e. not persistable).
Definition: Ptr.h:161
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
template<typename T>
key_type edm::FwdPtr< T >::key ( ) const
inline

Definition at line 110 of file FwdPtr.h.

References edm::FwdPtr< T >::backPtr_, edm::Ptr< T >::isNonnull(), edm::Ptr< T >::key(), and edm::FwdPtr< T >::ptr_.

110 {return ptr_.isNonnull() ? ptr_.key() : backPtr_.key() ;}
bool isNonnull() const
Checks for non-null.
Definition: Ptr.h:152
key_type key() const
Definition: Ptr.h:169
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127
template<typename T>
bool edm::FwdPtr< T >::operator! ( ) const
inline

Checks for null.

Definition at line 92 of file FwdPtr.h.

References edm::FwdPtr< T >::isNull().

92 {return isNull();}
bool isNull() const
Checks for null.
Definition: FwdPtr.h:86
template<typename T>
T const& edm::FwdPtr< T >::operator* ( ) const
inline

Dereference operator.

Definition at line 75 of file FwdPtr.h.

References edm::FwdPtr< T >::backPtr_, edm::Ptr< T >::isNonnull(), and edm::FwdPtr< T >::ptr_.

75 { return ptr_.isNonnull() ? ptr_.operator*() : backPtr_.operator*();}
bool isNonnull() const
Checks for non-null.
Definition: Ptr.h:152
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127
template<typename T>
T const* edm::FwdPtr< T >::operator-> ( ) const
inline

Member dereference operator.

Definition at line 79 of file FwdPtr.h.

References edm::FwdPtr< T >::backPtr_, edm::Ptr< T >::isNonnull(), and edm::FwdPtr< T >::ptr_.

79 { return ptr_.isNonnull() ? ptr_.operator->() : backPtr_.operator->();}
bool isNonnull() const
Checks for non-null.
Definition: Ptr.h:152
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127
template<typename T>
void const* edm::FwdPtr< T >::product ( ) const
inline

Definition at line 117 of file FwdPtr.h.

117 {return 0;}
template<typename T>
EDProductGetter const* edm::FwdPtr< T >::productGetter ( ) const
inline

Accessor for product getter.

Definition at line 105 of file FwdPtr.h.

References edm::FwdPtr< T >::backPtr_, edm::Ptr< T >::productGetter(), and edm::FwdPtr< T >::ptr_.

105  {
106  if (ptr_.productGetter()) return ptr_.productGetter();
107  else return backPtr_.productGetter();
108  }
EDProductGetter const * productGetter() const
Accessor for product getter.
Definition: Ptr.h:167
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127
template<typename T>
Ptr<value_type> const& edm::FwdPtr< T >::ptr ( ) const
inline

Definition at line 119 of file FwdPtr.h.

References edm::FwdPtr< T >::ptr_.

Referenced by TopProjectorFwdPtrOverlap< Top, Bottom >::operator()().

119 { return ptr_;}
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
template<typename T>
RefCore const& edm::FwdPtr< T >::refCore ( ) const
inline

Definition at line 114 of file FwdPtr.h.

References edm::FwdPtr< T >::backPtr_, edm::Ptr< T >::isNonnull(), edm::FwdPtr< T >::ptr_, and edm::Ptr< T >::refCore().

114 {return ptr_.isNonnull() ? ptr_.refCore() : backPtr_.refCore() ;}
bool isNonnull() const
Checks for non-null.
Definition: Ptr.h:152
RefCore const & refCore() const
Definition: Ptr.h:173
Ptr< value_type > ptr_
Definition: FwdPtr.h:126
Ptr< value_type > backPtr_
Definition: FwdPtr.h:127

Friends And Related Function Documentation

template<typename T>
friend class FwdPtrVectorBase
friend

Definition at line 42 of file FwdPtr.h.

Member Data Documentation

template<typename T>
Ptr<value_type> edm::FwdPtr< T >::backPtr_
private
template<typename T>
Ptr<value_type> edm::FwdPtr< T >::ptr_
private