ATLAS Offline Software
Loading...
Searching...
No Matches
TileHitVector_p1.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TILEHITVECTOR_P1_H
6#define TILEHITVECTOR_P1_H
7
8/*
9
10Persistent represenation of a TileHitVector
11Author: Davide Costanzo
12
13*/
14
16#include <vector>
17#include <string>
18
19
21
22 public:
24 typedef std::vector<TileHit_p1> HitVector;
25 typedef HitVector::const_iterator const_iterator;
26 typedef HitVector::iterator iterator;
27
30
31 // Accessors
32 const std::string& name() const {return m_name;}
33 const HitVector& getVector() const {return m_cont;}
34
35 std::vector<TileHit_p1> m_cont;
36 std::string m_name;
37};
38
39#endif
TileHitVector_p1()
Default constructor.
std::vector< TileHit_p1 > m_cont
std::vector< TileHit_p1 > HitVector
typedefs
const HitVector & getVector() const
HitVector::const_iterator const_iterator
HitVector::iterator iterator
const std::string & name() const