All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Gaudi::RootRef Struct Reference

Persistent reference object. More...

#include <RootCnv/RootRefs.h>

Public Member Functions

 RootRef ()
 Standard constructor. More...
 
 RootRef (const RootRef &c)
 Copy constructor. More...
 
RootRefoperator= (const RootRef &c)
 Assignment operator. More...
 
void reset ()
 Reset data content. More...
 

Public Attributes

int dbase
 Data members to define object location in the persistent world. More...
 
int container
 
int link
 
int clid
 
int svc
 
int entry
 

Detailed Description

Persistent reference object.

Author
M.Frank
Version
1.0

Definition at line 31 of file RootRefs.h.

Constructor & Destructor Documentation

Gaudi::RootRef::RootRef ( )
inline

Standard constructor.

Definition at line 35 of file RootRefs.h.

35 { this->reset(); }
void reset()
Reset data content.
Definition: RootRefs.h:54
Gaudi::RootRef::RootRef ( const RootRef c)
inline

Copy constructor.

Definition at line 37 of file RootRefs.h.

38  : dbase(c.dbase),container(c.container),link(c.link),clid(c.clid),svc(c.svc),entry(c.entry)
39  {
40  }
tuple c
Definition: gaudirun.py:341
int dbase
Data members to define object location in the persistent world.
Definition: RootRefs.h:33

Member Function Documentation

RootRef& Gaudi::RootRef::operator= ( const RootRef c)
inline

Assignment operator.

Definition at line 42 of file RootRefs.h.

42  {
43  if ( this != &c ) {
44  dbase = c.dbase;
45  container = c.container;
46  link = c.link;
47  clid = c.clid;
48  svc = c.svc;
49  entry = c.entry;
50  }
51  return *this;
52  }
tuple c
Definition: gaudirun.py:341
int dbase
Data members to define object location in the persistent world.
Definition: RootRefs.h:33
void Gaudi::RootRef::reset ( )
inline

Reset data content.

Definition at line 54 of file RootRefs.h.

54  {
55  dbase = -1;
56  container = -1;
57  link = -1;
58  entry = -1;
59  svc = 1;
60  clid = 1;
61  }
int dbase
Data members to define object location in the persistent world.
Definition: RootRefs.h:33

Member Data Documentation

int Gaudi::RootRef::clid

Definition at line 33 of file RootRefs.h.

int Gaudi::RootRef::container

Definition at line 33 of file RootRefs.h.

int Gaudi::RootRef::dbase

Data members to define object location in the persistent world.

Definition at line 33 of file RootRefs.h.

int Gaudi::RootRef::entry

Definition at line 33 of file RootRefs.h.

int Gaudi::RootRef::link

Definition at line 33 of file RootRefs.h.

int Gaudi::RootRef::svc

Definition at line 33 of file RootRefs.h.


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