ATLAS Offline Software
TileRawChannelContainer_p1.h
Go to the documentation of this file.
1 
3 /*
4  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5 */
6 
7 // TileRawChannelContainer_p1.h
8 // Persistent represenation of a TileRawChannelContainer
9 // Author: Alexander Solodkov <Sanya.Solodkov@cern.ch>
10 // Date: June 2009
12 #ifndef TILERAWCHANNELCONTAINER_P1_H
13 #define TILERAWCHANNELCONTAINER_P1_H
14 
16 #include <vector>
17 
19 {
20 public:
22  typedef std::vector<TileRawChannel_p1> ElemVector;
23  typedef ElemVector::const_iterator const_iterator;
25 
28 
29  // Accessors
30  const std::vector<unsigned int>& getParam() const {return m_param;}
31  const ElemVector& getVector() const {return m_cont;}
32 
33  // Clear methods
34  void clear() {m_param.clear(); m_cont.clear(); }
35  void reserve(unsigned int size1, unsigned int size2) { m_param.reserve(size1); m_cont.reserve(size2); }
36 
37  // Fill methods
38  void push_back_param (unsigned int param) {m_param.push_back(param); }
39  TileRawChannel_p1 * newElem () { m_cont.push_back(TileRawChannel_p1()); return &m_cont.back(); }
40 
41 private:
42  std::vector<unsigned int> m_param;
43  std::vector<TileRawChannel_p1> m_cont;
44 };
45 
46 #endif
xAOD::iterator
JetConstituentVector::iterator iterator
Definition: JetConstituentVector.cxx:68
TileRawChannelContainer_p1::push_back_param
void push_back_param(unsigned int param)
Definition: TileRawChannelContainer_p1.h:38
TileRawChannelContainer_p1::const_iterator
ElemVector::const_iterator const_iterator
Definition: TileRawChannelContainer_p1.h:23
TileRawChannelContainer_p1::getParam
const std::vector< unsigned int > & getParam() const
Definition: TileRawChannelContainer_p1.h:30
TileRawChannelContainer_p1::m_param
std::vector< unsigned int > m_param
Definition: TileRawChannelContainer_p1.h:42
TileRawChannel_p1
Definition: TileRawChannel_p1.h:20
TileRawChannelContainer_p1::getVector
const ElemVector & getVector() const
Definition: TileRawChannelContainer_p1.h:31
TileRawChannelContainer_p1::reserve
void reserve(unsigned int size1, unsigned int size2)
Definition: TileRawChannelContainer_p1.h:35
TileRawChannelContainer_p1::iterator
ElemVector::iterator iterator
Definition: TileRawChannelContainer_p1.h:24
TileRawChannelContainer_p1::ElemVector
std::vector< TileRawChannel_p1 > ElemVector
typedefs
Definition: TileRawChannelContainer_p1.h:22
TileRawChannelContainer_p1::TileRawChannelContainer_p1
TileRawChannelContainer_p1()
Default constructor.
Definition: TileRawChannelContainer_p1.h:27
TileRawChannelContainer_p1::clear
void clear()
Definition: TileRawChannelContainer_p1.h:34
TileRawChannelContainer_p1::newElem
TileRawChannel_p1 * newElem()
Definition: TileRawChannelContainer_p1.h:39
TileRawChannelContainer_p1
Definition: TileRawChannelContainer_p1.h:19
TileRawChannelContainer_p1::m_cont
std::vector< TileRawChannel_p1 > m_cont
Definition: TileRawChannelContainer_p1.h:43
TileRawChannel_p1.h