ATLAS Offline Software
Loading...
Searching...
No Matches
TileHitContainer_p1.h
Go to the documentation of this file.
1
2
3/*
4 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5*/
6
7// TileHitContainer_p1.h
8// Persistent represenation of a TileHitContainer
9// Author: Alexander Solodkov <Sanya.Solodkov@cern.ch>
10// Date: June 2009
12#ifndef TILEHITCONTAINER_P1_H
13#define TILEHITCONTAINER_P1_H
14
16#include <vector>
17
19
20 public:
22 typedef std::vector<TileHit_p1> ElemVector;
23 typedef ElemVector::const_iterator const_iterator;
24 typedef ElemVector::iterator 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 TileHit_p1 * newElem () { m_cont.push_back(TileHit_p1()); return &m_cont.back(); }
40
41private:
42 std::vector<unsigned int> m_param;
43 std::vector<TileHit_p1> m_cont;
44};
45
46#endif
ElemVector::iterator iterator
std::vector< TileHit_p1 > m_cont
void reserve(unsigned int size1, unsigned int size2)
const ElemVector & getVector() const
const std::vector< unsigned int > & getParam() const
std::vector< TileHit_p1 > ElemVector
typedefs
ElemVector::const_iterator const_iterator
void push_back_param(unsigned int param)
std::vector< unsigned int > m_param
TileHitContainer_p1()
Default constructor.