The Gaudi Framework  v29r0 (ff2e7097)
RootHistCnv::RootObjAddress Class Reference

#include <src/RootObjAddress.h>

Inheritance diagram for RootHistCnv::RootObjAddress:
Collaboration diagram for RootHistCnv::RootObjAddress:

Public Member Functions

 RootObjAddress ()
 Dummy constructor. More...
 
 RootObjAddress (const RootObjAddress &copy)
 
 RootObjAddress (long svc, const CLID &clid, const std::string &p1="", const std::string &p2="", unsigned long ip1=0, unsigned long ip2=0, TObject *tObj=0)
 Standard Constructor. More...
 
 ~RootObjAddress () override=default
 Standard Destructor. More...
 
unsigned long addRef () override
 Add reference to object. More...
 
unsigned long release () override
 release reference to object More...
 
IRegistryregistry () const override
 Pointer to directory. More...
 
void setRegistry (IRegistry *pRegistry) override
 Set pointer to directory. More...
 
const CLIDclID () const override
 Access : Retrieve class ID of the link. More...
 
virtual void setClID (const CLID &clid)
 Access : Set class ID of the link. More...
 
long svcType () const override
 Access : retrieve the storage type of the class id. More...
 
virtual void setSvcType (long typ)
 Access : set the storage type of the class id. More...
 
const std::stringpar () const override
 Retrieve string parameters. More...
 
const unsigned long * ipar () const override
 Retrieve integer parameters. More...
 
virtual TObject * tObj () const
 Retrieve TObject* ptr. More...
 
- Public Member Functions inherited from IOpaqueAddress
virtual ~IOpaqueAddress ()=default
 destructor More...
 

Protected Attributes

unsigned long m_refCount
 
long m_svcType
 Storage type. More...
 
CLID m_clID
 Class id. More...
 
std::string m_par [2]
 String parameters to be accessed. More...
 
unsigned long m_ipar [2]
 Integer parameters to be accessed. More...
 
IRegistrym_pRegistry
 Pointer to corresponding directory. More...
 
TObject * m_tObj
 Pointer to TObject. More...
 

Detailed Description

Definition at line 11 of file RootObjAddress.h.

Constructor & Destructor Documentation

RootHistCnv::RootObjAddress::RootObjAddress ( )
inline

Dummy constructor.

Definition at line 31 of file RootObjAddress.h.

31  : m_refCount( 0 ), m_svcType( 0 ), m_clID( 0 ), m_pRegistry( 0 ), m_tObj( 0 )
32  {
33  m_ipar[0] = m_ipar[1] = 0xFFFFFFFF;
34  }
IRegistry * m_pRegistry
Pointer to corresponding directory.
unsigned long m_ipar[2]
Integer parameters to be accessed.
TObject * m_tObj
Pointer to TObject.
long m_svcType
Storage type.
RootHistCnv::RootObjAddress::RootObjAddress ( const RootObjAddress copy)
inline

Definition at line 36 of file RootObjAddress.h.

37  : IOpaqueAddress( copy )
38  , m_refCount( 0 )
39  , m_svcType( copy.m_svcType )
40  , m_clID( copy.m_clID )
41  , m_pRegistry( copy.m_pRegistry )
42  , m_tObj( copy.m_tObj )
43  {
44  m_par[0] = copy.m_par[0];
45  m_par[1] = copy.m_par[1];
46  m_ipar[0] = copy.m_ipar[0];
47  m_ipar[1] = copy.m_ipar[1];
48  }
T copy(T...args)
IRegistry * m_pRegistry
Pointer to corresponding directory.
unsigned long m_ipar[2]
Integer parameters to be accessed.
std::string m_par[2]
String parameters to be accessed.
TObject * m_tObj
Pointer to TObject.
long m_svcType
Storage type.
Opaque address interface definition.
RootHistCnv::RootObjAddress::RootObjAddress ( long  svc,
const CLID clid,
const std::string p1 = "",
const std::string p2 = "",
unsigned long  ip1 = 0,
unsigned long  ip2 = 0,
TObject *  tObj = 0 
)
inline

Standard Constructor.

Definition at line 51 of file RootObjAddress.h.

53  : m_refCount( 0 ), m_svcType( svc ), m_clID( clid ), m_pRegistry( 0 ), m_tObj( tObj )
54  {
55  m_par[0] = p1;
56  m_par[1] = p2;
57  m_ipar[0] = ip1;
58  m_ipar[1] = ip2;
59  }
IRegistry * m_pRegistry
Pointer to corresponding directory.
unsigned long m_ipar[2]
Integer parameters to be accessed.
std::string m_par[2]
String parameters to be accessed.
virtual TObject * tObj() const
Retrieve TObject* ptr.
TObject * m_tObj
Pointer to TObject.
long m_svcType
Storage type.
RootHistCnv::RootObjAddress::~RootObjAddress ( )
overridedefault

Standard Destructor.

Member Function Documentation

unsigned long RootHistCnv::RootObjAddress::addRef ( )
inlineoverridevirtual

Add reference to object.

Implements IOpaqueAddress.

Definition at line 65 of file RootObjAddress.h.

65 { return ++m_refCount; }
const CLID& RootHistCnv::RootObjAddress::clID ( ) const
inlineoverridevirtual

Access : Retrieve class ID of the link.

Implements IOpaqueAddress.

Definition at line 78 of file RootObjAddress.h.

78 { return m_clID; }
const unsigned long* RootHistCnv::RootObjAddress::ipar ( ) const
inlineoverridevirtual

Retrieve integer parameters.

Implements IOpaqueAddress.

Definition at line 88 of file RootObjAddress.h.

88 { return m_ipar; }
unsigned long m_ipar[2]
Integer parameters to be accessed.
const std::string* RootHistCnv::RootObjAddress::par ( ) const
inlineoverridevirtual

Retrieve string parameters.

Implements IOpaqueAddress.

Definition at line 86 of file RootObjAddress.h.

86 { return m_par; }
std::string m_par[2]
String parameters to be accessed.
IRegistry* RootHistCnv::RootObjAddress::registry ( ) const
inlineoverridevirtual

Pointer to directory.

Implements IOpaqueAddress.

Definition at line 74 of file RootObjAddress.h.

74 { return m_pRegistry; }
IRegistry * m_pRegistry
Pointer to corresponding directory.
unsigned long RootHistCnv::RootObjAddress::release ( )
inlineoverridevirtual

release reference to object

Implements IOpaqueAddress.

Definition at line 67 of file RootObjAddress.h.

68  {
69  int cnt = --m_refCount;
70  if ( 0 == cnt ) delete this;
71  return cnt;
72  }
virtual void RootHistCnv::RootObjAddress::setClID ( const CLID clid)
inlinevirtual

Access : Set class ID of the link.

Definition at line 80 of file RootObjAddress.h.

80 { m_clID = clid; }
void RootHistCnv::RootObjAddress::setRegistry ( IRegistry pRegistry)
inlineoverridevirtual

Set pointer to directory.

Implements IOpaqueAddress.

Definition at line 76 of file RootObjAddress.h.

76 { m_pRegistry = pRegistry; }
IRegistry * m_pRegistry
Pointer to corresponding directory.
virtual void RootHistCnv::RootObjAddress::setSvcType ( long  typ)
inlinevirtual

Access : set the storage type of the class id.

Definition at line 84 of file RootObjAddress.h.

84 { m_svcType = typ; }
long m_svcType
Storage type.
long RootHistCnv::RootObjAddress::svcType ( ) const
inlineoverridevirtual

Access : retrieve the storage type of the class id.

Implements IOpaqueAddress.

Definition at line 82 of file RootObjAddress.h.

82 { return m_svcType; }
long m_svcType
Storage type.
virtual TObject* RootHistCnv::RootObjAddress::tObj ( ) const
inlinevirtual

Retrieve TObject* ptr.

Definition at line 91 of file RootObjAddress.h.

91 { return m_tObj; }
TObject * m_tObj
Pointer to TObject.

Member Data Documentation

CLID RootHistCnv::RootObjAddress::m_clID
protected

Class id.

Definition at line 19 of file RootObjAddress.h.

unsigned long RootHistCnv::RootObjAddress::m_ipar[2]
protected

Integer parameters to be accessed.

Definition at line 23 of file RootObjAddress.h.

std::string RootHistCnv::RootObjAddress::m_par[2]
protected

String parameters to be accessed.

Definition at line 21 of file RootObjAddress.h.

IRegistry* RootHistCnv::RootObjAddress::m_pRegistry
protected

Pointer to corresponding directory.

Definition at line 25 of file RootObjAddress.h.

unsigned long RootHistCnv::RootObjAddress::m_refCount
protected

Definition at line 15 of file RootObjAddress.h.

long RootHistCnv::RootObjAddress::m_svcType
protected

Storage type.

Definition at line 17 of file RootObjAddress.h.

TObject* RootHistCnv::RootObjAddress::m_tObj
protected

Pointer to TObject.

Definition at line 27 of file RootObjAddress.h.


The documentation for this class was generated from the following file: