ATLAS Offline Software
Loading...
Searching...
No Matches
Trigger/TrigAccel/TrigCudaFitter/src/SpacePoint.h
Go to the documentation of this file.
1// Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2#include <vector>
3
4class SiCluster;
5
7{
8 public:
9 SpacePoint(double, double, double);
10 virtual ~SpacePoint(void);
11
12 void addCluster(const SiCluster* pclust);
13
14 std::vector<const SiCluster*> m_clusters;
15 double m_x, m_y, m_z, m_r;
16};
std::vector< const SiCluster * > m_clusters
virtual ~SpacePoint(void)
SpacePoint(double, double, double)
void addCluster(const SiCluster *pclust)