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

#include <DbArray.h>

Inheritance diagram for LongDbArray:
Collaboration diagram for LongDbArray:

Public Member Functions

 LongDbArray ()
 
virtual ~LongDbArray ()
 
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...
 
long * m_buffer
 Buffer with object content. More...
 

Detailed Description

Definition at line 61 of file DbArray.h.

Constructor & Destructor Documentation

◆ LongDbArray()

LongDbArray::LongDbArray ( )
inline

Definition at line 61 of file DbArray.h.

61 : public pool::DbArray<long> { public: LongDbArray() {}; virtual ~LongDbArray() {} };

◆ ~LongDbArray()

virtual LongDbArray::~LongDbArray ( )
inlinevirtual

Definition at line 61 of file DbArray.h.

61 : public pool::DbArray<long> { public: LongDbArray() {}; virtual ~LongDbArray() {} };

Member Function Documentation

◆ allocate()

void pool::DbArray< long >::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< long >::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

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

Buffer with object content.

Definition at line 34 of file DbArray.h.

◆ m_size

int pool::DbArray< long >::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:
pool::DbArray< long >::m_size
int m_size
Size of buffer.
Definition: DbArray.h:32
LongDbArray::LongDbArray
LongDbArray()
Definition: DbArray.h:61
pool::DbArray< long >
pool::DbArray< long >::m_buffer
long * m_buffer
Buffer with object content.
Definition: DbArray.h:34
LongDbArray::~LongDbArray
virtual ~LongDbArray()
Definition: DbArray.h:61
TSU::T
unsigned long long T
Definition: L1TopoDataTypes.h:35