ATLAS Offline Software
Public Member Functions | Public Attributes | List of all members
IntDbArray Struct Reference

#include <DbArray.h>

Inheritance diagram for IntDbArray:
Collaboration diagram for IntDbArray:

Public Member Functions

 IntDbArray ()
 
virtual ~IntDbArray ()
 
void allocate (int siz, bool do_delete)
 Allocate an object buffer. More...
 
void release (bool do_delete)
 Release data buffer with or without delete. More...
 

Public Attributes

int m_size
 Size of buffer. More...
 
int * m_buffer
 Buffer with object content. More...
 

Detailed Description

Definition at line 59 of file DbArray.h.

Constructor & Destructor Documentation

◆ IntDbArray()

IntDbArray::IntDbArray ( )
inline

Definition at line 59 of file DbArray.h.

59 : public pool::DbArray<int> { public: IntDbArray() {}; virtual ~IntDbArray() {} };

◆ ~IntDbArray()

virtual IntDbArray::~IntDbArray ( )
inlinevirtual

Definition at line 59 of file DbArray.h.

59 : public pool::DbArray<int> { public: IntDbArray() {}; virtual ~IntDbArray() {} };

Member Function Documentation

◆ allocate()

void pool::DbArray< int >::allocate ( int  siz,
bool  do_delete 
)
inlineinherited

Allocate an object buffer.

Definition at line 41 of file DbArray.h.

41  {
42  if ( do_delete ) delete [] m_buffer;
43  m_buffer = new T[siz];
44  m_size = siz;
45  }

◆ release()

void pool::DbArray< int >::release ( bool  do_delete)
inlineinherited

Release data buffer with or without delete.

Definition at line 47 of file DbArray.h.

47  {
48  if ( do_delete ) delete [] m_buffer;
49  m_buffer = 0;
50  m_size = 0;
51  }

Member Data Documentation

◆ m_buffer

int * pool::DbArray< int >::m_buffer
inherited

Buffer with object content.

Definition at line 34 of file DbArray.h.

◆ m_size

int pool::DbArray< int >::m_size
inherited

Size of buffer.

Definition at line 32 of file DbArray.h.


The documentation for this struct was generated from the following file:
IntDbArray::~IntDbArray
virtual ~IntDbArray()
Definition: DbArray.h:59
pool::DbArray< int >::m_size
int m_size
Size of buffer.
Definition: DbArray.h:32
pool::DbArray< int >
IntDbArray::IntDbArray
IntDbArray()
Definition: DbArray.h:59
pool::DbArray< int >::m_buffer
int * m_buffer
Buffer with object content.
Definition: DbArray.h:34
TSU::T
unsigned long long T
Definition: L1TopoDataTypes.h:35