ATLAS Offline Software
Loading...
Searching...
No Matches
TRT_HitCollection_p1.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRT_HITCOLLECTION_P1_H
6#define TRT_HITCOLLECTION_P1_H
7
8/*
9
10Persistent represenation of a TRT_HitContainer,
11Author: Davide Costanzo
12
13*/
14
15#include <vector>
16#include <string>
17#include "TRT_Hit_p1.h"
18
19
21{
22public:
24 typedef std::vector<TRT_Hit_p1> HitVector;
25 typedef HitVector::const_iterator const_iterator;
26 typedef HitVector::iterator iterator;
27
28
31
32 // Accessors
33 const std::string& name() const;
34 const HitVector& getVector() const;
35 //private:
36 std::vector<TRT_Hit_p1> m_cont;
37 std::string m_name;
38};
39
40
41// inlines
42
43inline
45
46inline
47const std::string&
50
51inline
52const std::vector<TRT_Hit_p1>&
55
56#endif
std::vector< TRT_Hit_p1 > HitVector
typedefs
TRT_HitCollection_p1()
Default constructor.
const std::string & name() const
std::vector< TRT_Hit_p1 > m_cont
const HitVector & getVector() const
HitVector::const_iterator const_iterator
HitVector::iterator iterator