|
Gaudi Framework, version v23r2 |
| Home | Generated: Thu Jun 28 2012 |
the template specialization for named ranges More...
#include <GetData.h>

Public Types | |
| typedef Gaudi::NamedRange_ < std::vector< const TYPE * > > | Type |
| the actual return type | |
| typedef _GetType< Type > ::return_type | return_type |
Public Member Functions | |
| template<class COMMON > | |
| return_type | operator() (const COMMON &common, IDataProviderSvc *service, const std::string &location) const |
| the only one essential method | |
| return_type | make_range (const typename TYPE::Container *cnt) const |
| return_type | make_range (const typename TYPE::Selection *cnt) const |
| DataObject * | getData (IDataProviderSvc *service, const std::string &location) const |
| get the data form transient store | |
Private Attributes | |
| GetData< Gaudi::Range_ < std::vector< const TYPE * > > > | m_range |
| ===================================================================== the actual processor | |
the template specialization for named ranges
Definition at line 208 of file GetData.h.
| typedef _GetType<Type>::return_type Gaudi::Utils::GetData< Gaudi::NamedRange_< std::vector< const TYPE * > > >::return_type |
| typedef Gaudi::NamedRange_<std::vector<const TYPE*> > Gaudi::Utils::GetData< Gaudi::NamedRange_< std::vector< const TYPE * > > >::Type |
| DataObject* Gaudi::Utils::GetData< Gaudi::NamedRange_< std::vector< const TYPE * > > >::getData | ( | IDataProviderSvc * | service, |
| const std::string & | location | ||
| ) | const [inline] |
| return_type Gaudi::Utils::GetData< Gaudi::NamedRange_< std::vector< const TYPE * > > >::make_range | ( | const typename TYPE::Container * | cnt ) | const [inline] |
Definition at line 236 of file GetData.h.
{
if ( 0 == cnt ) { return return_type() ; }
static const std::string s_empty = "" ;
const IRegistry* reg = cnt->registry() ;
return return_type
( m_range.make_range ( cnt ) , 0 != reg ? reg->identifier() : s_empty ) ;
}
| return_type Gaudi::Utils::GetData< Gaudi::NamedRange_< std::vector< const TYPE * > > >::make_range | ( | const typename TYPE::Selection * | cnt ) | const [inline] |
Definition at line 245 of file GetData.h.
{
if ( 0 == cnt ) { return return_type() ; }
static const std::string s_empty = "" ;
const IRegistry* reg = cnt->registry() ;
return return_type
( m_range.make_range ( cnt ) , 0 != reg ? reg->identifier() : s_empty ) ;
}
| return_type Gaudi::Utils::GetData< Gaudi::NamedRange_< std::vector< const TYPE * > > >::operator() | ( | const COMMON & | common, |
| IDataProviderSvc * | service, | ||
| const std::string & | location | ||
| ) | const [inline] |
the only one essential method
| common | the actual "worker" |
| service | pointer to Data Provider Service |
| location | location of objects in TES |
Definition at line 226 of file GetData.h.
{
return return_type ( m_range( common , service , location ) , location ) ;
}
GetData<Gaudi::Range_<std::vector<const TYPE*> > > Gaudi::Utils::GetData< Gaudi::NamedRange_< std::vector< const TYPE * > > >::m_range [private] |