ATLAS Offline Software
Loading...
Searching...
No Matches
Trigger/TrigAccel/TrigCudaFitter/src/PixelCluster.h
Go to the documentation of this file.
1// Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2#ifndef __PIXEL_CLUSTER_H__
3#define __PIXEL_CLUSTER_H__
4
5#include "SiCluster.h"
6
7#include <memory>
8
9class PixelCluster : public SiCluster
10{
11 public:
12 PixelCluster(std::unique_ptr<const Surface>);
13
14 double m_m[2]{};
15 double m_cov[2][2]{};
16
17 public:
18 virtual void setParameters(float* par);
19 virtual TrkBaseNode* createDkfNode(void) const;
20};
21#endif
virtual TrkBaseNode * createDkfNode(void) const
virtual void setParameters(float *par)
PixelCluster(std::unique_ptr< const Surface >)
SiCluster(std::unique_ptr< const Surface >)