ATLAS Offline Software
LUCID_SimHitCollection_p2.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef LUCIDEVENTTPCNV_LUCID_SIMHITCOLLECTION_P2_H
6 #define LUCIDEVENTTPCNV_LUCID_SIMHITCOLLECTION_P2_H
7 
8 #include <vector>
9 #include "LUCID_SimHit_p2.h"
10 
11 
13 {
14 public:
16  typedef std::vector<LUCID_SimHit_p2> HitVector;
17  typedef HitVector::const_iterator const_iterator;
19 
20 
23  // Accessors
24  const std::string& name() const;
25  const HitVector& getVector() const;
26  //private:
27  std::vector<LUCID_SimHit_p2> m_cont;
28  std::string m_name;
29 };
30 
31 
32 // inlines
33 
34 inline
36 
37 inline
38 const std::string&
40 {return m_name;}
41 
42 inline
43 const std::vector<LUCID_SimHit_p2>&
45 {return m_cont;}
46 
47 #endif
xAOD::iterator
JetConstituentVector::iterator iterator
Definition: JetConstituentVector.cxx:68
LUCID_SimHitCollection_p2::name
const std::string & name() const
Definition: LUCID_SimHitCollection_p2.h:39
LUCID_SimHitCollection_p2::HitVector
std::vector< LUCID_SimHit_p2 > HitVector
typedefs
Definition: LUCID_SimHitCollection_p2.h:16
LUCID_SimHit_p2.h
LUCID_SimHitCollection_p2
Definition: LUCID_SimHitCollection_p2.h:13
LUCID_SimHitCollection_p2::const_iterator
HitVector::const_iterator const_iterator
Definition: LUCID_SimHitCollection_p2.h:17
LUCID_SimHitCollection_p2::getVector
const HitVector & getVector() const
Definition: LUCID_SimHitCollection_p2.h:44
LUCID_SimHitCollection_p2::iterator
HitVector::iterator iterator
Definition: LUCID_SimHitCollection_p2.h:18
LUCID_SimHitCollection_p2::m_name
std::string m_name
Definition: LUCID_SimHitCollection_p2.h:28
LUCID_SimHitCollection_p2::m_cont
std::vector< LUCID_SimHit_p2 > m_cont
Definition: LUCID_SimHitCollection_p2.h:27
LUCID_SimHitCollection_p2::LUCID_SimHitCollection_p2
LUCID_SimHitCollection_p2()
Default constructor.
Definition: LUCID_SimHitCollection_p2.h:35