ATLAS Offline Software
AFP_SIDLocRecoEvent.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 
7 
8 // Default constructor needed by athenaroot/athenapool
10 {
11  m_iAlgoNum = 0;
12  m_nStationID = 0;
13 
14  m_x = 0.0;
15  m_y = 0.0;
16  m_z = 0.0;
17  m_x_slope = 0.0;
18  m_y_slope = 0.0;
19  m_z_slope = 0.0;
20 
21  m_nHits = 0;
22  m_nHoles = 0;
23  m_fChi2 = 0.0;
24 }
25 
26 // destructor
28 
29 AFP_SIDLocRecoEvent::AFP_SIDLocRecoEvent(int iAlgoNum, int nStationID, float x_pos, float y_pos, float z_pos, float x_slope, float y_slope, float z_slope, int nHits, int nHoles, float fChi2):
30  m_iAlgoNum(iAlgoNum), m_nStationID(nStationID), m_x(x_pos), m_y(y_pos), m_z(z_pos), m_x_slope(x_slope), m_y_slope(y_slope), m_z_slope(z_slope), m_nHits(nHits), m_nHoles(nHoles), m_fChi2(fChi2)
31 {}
AFP_SIDLocRecoEvent::m_nHoles
int m_nHoles
Definition: AFP_SIDLocRecoEvent.h:48
AFP_SIDLocRecoEvent.h
AFP_SIDLocRecoEvent::AFP_SIDLocRecoEvent
AFP_SIDLocRecoEvent()
Definition: AFP_SIDLocRecoEvent.cxx:9
AFP_SIDLocRecoEvent::m_y_slope
float m_y_slope
Definition: AFP_SIDLocRecoEvent.h:44
AFP_SIDLocRecoEvent::~AFP_SIDLocRecoEvent
~AFP_SIDLocRecoEvent()
Definition: AFP_SIDLocRecoEvent.cxx:27
AFP_SIDLocRecoEvent::m_z_slope
float m_z_slope
Definition: AFP_SIDLocRecoEvent.h:45
AFP_SIDLocRecoEvent::m_iAlgoNum
int m_iAlgoNum
Definition: AFP_SIDLocRecoEvent.h:37
AFP_SIDLocRecoEvent::m_y
float m_y
Definition: AFP_SIDLocRecoEvent.h:41
AFP_SIDLocRecoEvent::m_fChi2
float m_fChi2
Definition: AFP_SIDLocRecoEvent.h:49
AFP_SIDLocRecoEvent::m_nStationID
int m_nStationID
Definition: AFP_SIDLocRecoEvent.h:38
AFP_SIDLocRecoEvent::m_z
float m_z
Definition: AFP_SIDLocRecoEvent.h:42
AFP_SIDLocRecoEvent::m_nHits
int m_nHits
Definition: AFP_SIDLocRecoEvent.h:47
AFP_SIDLocRecoEvent::m_x
float m_x
Definition: AFP_SIDLocRecoEvent.h:40
AFP_SIDLocRecoEvent::m_x_slope
float m_x_slope
Definition: AFP_SIDLocRecoEvent.h:43