ATLAS Offline Software
Loading...
Searching...
No Matches
McTrack.h
Go to the documentation of this file.
1// Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2#ifndef __MCTRACK_H__
3#define __MCTRACK_H__
4
5#include <vector>
6
7class McBremPoint;
8
9class McTrack
10{
11 public:
12 McTrack(float[6]);
13 virtual ~McTrack(void);
14
15 double m_params[5];
17 std::vector<McBremPoint> m_bremPoints;
18
19 public:
20 void addBremPoint(float x, float y, float z, float loss);
21};
22
23#endif
#define y
#define x
#define z
void addBremPoint(float x, float y, float z, float loss)
virtual ~McTrack(void)
double m_params[5]
Definition McTrack.h:15
std::vector< McBremPoint > m_bremPoints
Definition McTrack.h:17
McTrack(float[6])
double m_totalEloss
Definition McTrack.h:16