ATLAS Offline Software
Loading...
Searching...
No Matches
TrigInDetTracklet.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGINDETPATTRECOEVENT_TRIGINDETTRACKLET_H
6#define TRIGINDETPATTRECOEVENT_TRIGINDETTRACKLET_H
7
8#include <vector>
9
11
15
17
18 public:
19
20 TrigInDetTracklet(float Q) : m_Q(Q) {};
21
22 const std::vector<const Trk::SpacePoint*>& seed() const {
23 return m_vSP;
24 }
25
26 float quality() const {
27 return m_Q;
28 }
29
30 void addSpacePoint(const Trk::SpacePoint* pSP) {
31 m_vSP.push_back(pSP);
32 }
33
34 protected:
35
36 std::vector<const Trk::SpacePoint*> m_vSP;
37 float m_Q;
38
39};
40
41
42#endif
std::vector< const Trk::SpacePoint * > m_vSP
const std::vector< const Trk::SpacePoint * > & seed() const
void addSpacePoint(const Trk::SpacePoint *pSP)
float quality() const