ATLAS Offline Software
Public Types | Public Member Functions | Protected Attributes | Private Member Functions | Private Attributes | List of all members
TCS::jEmTOBArray Class Reference

#include <jEmTOBArray.h>

Inheritance diagram for TCS::jEmTOBArray:
Collaboration diagram for TCS::jEmTOBArray:

Public Types

typedef std::vector< jEmTOB * > data_t
 
typedef data_t::iterator iterator
 
typedef data_t::const_iterator const_iterator
 

Public Member Functions

 jEmTOBArray (const std::string &name, unsigned int reserve)
 
virtual unsigned int size () const
 
TOBArray asTOBArray () const
 
const std::string & name () const
 
size_t size () const
 
size_t capacity () const
 
void clear ()
 
virtual void push_back (const jEmTOB &tob)
 
void pop_back ()
 
iterator begin ()
 
const_iterator begin () const
 
iterator end ()
 
const_iterator end () const
 
jEmTOBoperator[] (const int i)
 
const jEmTOBoperator[] (const int i) const
 

Protected Attributes

data_t m_data
 
unsigned int m_reserve
 

Private Member Functions

virtual void print (std::ostream &) const
 

Private Attributes

std::string m_name
 

Detailed Description

Definition at line 19 of file jEmTOBArray.h.

Member Typedef Documentation

◆ const_iterator

typedef data_t::const_iterator TCS::DataArrayImpl< jEmTOB >::const_iterator
inherited

Definition at line 18 of file DataArrayImpl.h.

◆ data_t

typedef std::vector<jEmTOB *> TCS::DataArrayImpl< jEmTOB >::data_t
inherited

Definition at line 16 of file DataArrayImpl.h.

◆ iterator

typedef data_t::iterator TCS::DataArrayImpl< jEmTOB >::iterator
inherited

Definition at line 17 of file DataArrayImpl.h.

Constructor & Destructor Documentation

◆ jEmTOBArray()

TCS::jEmTOBArray::jEmTOBArray ( const std::string &  name,
unsigned int  reserve 
)

Definition at line 10 of file jEmTOBArray.cxx.

10  :
12  DataArrayImpl<jEmTOB>(reserve)
13 {}

Member Function Documentation

◆ asTOBArray()

TCS::TOBArray TCS::jEmTOBArray::asTOBArray ( ) const

Definition at line 17 of file jEmTOBArray.cxx.

17  {
18  TOBArray tobarray(name());
19  for(const jEmTOB * jet : m_data)
20  tobarray.push_back( GenericTOB(*jet));
21  return tobarray;
22 }

◆ begin() [1/2]

iterator TCS::DataArrayImpl< jEmTOB >::begin
inlineinherited

Definition at line 40 of file DataArrayImpl.h.

40 { return m_data.begin(); }

◆ begin() [2/2]

const_iterator TCS::DataArrayImpl< jEmTOB >::begin
inlineinherited

Definition at line 41 of file DataArrayImpl.h.

41 { return m_data.begin(); }

◆ capacity()

size_t TCS::DataArrayImpl< jEmTOB >::capacity
inlineinherited

Definition at line 32 of file DataArrayImpl.h.

32 { return m_data.capacity(); }

◆ clear()

void TCS::DataArrayImpl< jEmTOB >::clear
inlineinherited

Definition at line 34 of file DataArrayImpl.h.

34 { m_data.clear(); }

◆ end() [1/2]

iterator TCS::DataArrayImpl< jEmTOB >::end
inlineinherited

Definition at line 43 of file DataArrayImpl.h.

43 { return m_data.end(); }

◆ end() [2/2]

const_iterator TCS::DataArrayImpl< jEmTOB >::end
inlineinherited

Definition at line 44 of file DataArrayImpl.h.

44 { return m_data.end(); }

◆ name()

const std::string& TCS::DataArray::name ( ) const
inlineinherited

Definition at line 20 of file DataArray.h.

20 { return m_name; }

◆ operator[]() [1/2]

jEmTOB & TCS::DataArrayImpl< jEmTOB >::operator[] ( const int  i)
inlineinherited

Definition at line 46 of file DataArrayImpl.h.

46 { return *m_data[i]; }

◆ operator[]() [2/2]

const jEmTOB & TCS::DataArrayImpl< jEmTOB >::operator[] ( const int  i) const
inlineinherited

Definition at line 47 of file DataArrayImpl.h.

47 { return *m_data[i]; }

◆ pop_back()

void TCS::DataArrayImpl< jEmTOB >::pop_back
inlineinherited

Definition at line 38 of file DataArrayImpl.h.

38 { m_data.pop_back(); }

◆ print()

void TCS::jEmTOBArray::print ( std::ostream &  o) const
privatevirtual

Implements TCS::DataArray.

Definition at line 25 of file jEmTOBArray.cxx.

25  {
26  o << name() << std::endl;
27  for(const_iterator tob = begin(); tob != end(); ++tob)
28  o << **tob << std::endl;
29 }

◆ push_back()

void TCS::DataArrayImpl< jEmTOB >::push_back ( const jEmTOB tob)
virtualinherited

Definition at line 36 of file DataArrayImpl.h.

57  {
58  m_data.push_back(DATA::createOnHeap(tob));
59 }

◆ size() [1/2]

virtual unsigned int TCS::jEmTOBArray::size ( ) const
inlinevirtual

Implements TCS::InputTOBArray.

Definition at line 24 of file jEmTOBArray.h.

24 { return DataArrayImpl<jEmTOB>::size(); }

◆ size() [2/2]

size_t TCS::DataArrayImpl< jEmTOB >::size
inlineinherited

Definition at line 30 of file DataArrayImpl.h.

30 { return m_data.size(); }

Member Data Documentation

◆ m_data

data_t TCS::DataArrayImpl< jEmTOB >::m_data
protectedinherited

Definition at line 50 of file DataArrayImpl.h.

◆ m_name

std::string TCS::DataArray::m_name
privateinherited

Definition at line 25 of file DataArray.h.

◆ m_reserve

unsigned int TCS::DataArrayImpl< jEmTOB >::m_reserve
protectedinherited

Definition at line 51 of file DataArrayImpl.h.


The documentation for this class was generated from the following files:
TCS::InputTOBArray::InputTOBArray
InputTOBArray(const std::string &name)
Definition: InputTOBArray.h:18
TCS::DataArrayImpl< jEmTOB >::const_iterator
data_t::const_iterator const_iterator
Definition: DataArrayImpl.h:18
TCS::DataArray::name
const std::string & name() const
Definition: DataArray.h:20
TCS::DataArrayImpl< jEmTOB >::end
iterator end()
Definition: DataArrayImpl.h:43
jet
Definition: JetCalibTools_PlotJESFactors.cxx:23
lumiFormat.i
int i
Definition: lumiFormat.py:92
TCS::DataArrayImpl::size
size_t size() const
Definition: DataArrayImpl.h:30
TCS::DataArray::m_name
std::string m_name
Definition: DataArray.h:25
TCS::DataArrayImpl< jEmTOB >::m_data
data_t m_data
Definition: DataArrayImpl.h:50
TCS::DataArrayImpl< jEmTOB >::begin
iterator begin()
Definition: DataArrayImpl.h:40