ATLAS Offline Software
ALFA_GloRecEvent.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 
7 
8 
9 // Default constructor needed by athenaroot/athenapool
11 {
12  m_arm = 0;
13  m_x = 0.0;
14  m_y = 0.0;
15  m_x_slope = 0.0;
16  m_y_slope = 0.0;
17  m_near_LocRecCorr = nullptr;
18  m_far_LocRecCorr = nullptr;
19 }
20 
21 // destructor
23 
24 // constructor
26  int arm,
27  float x_pos,
28  float y_pos,
29  float x_slope,
30  float y_slope,
31  const ALFA_LocRecCorrEvent * near_hit,
32  const ALFA_LocRecCorrEvent * far_hit
33  ):m_arm(arm),
34  m_x(x_pos),
35  m_y(y_pos),
36  m_x_slope(x_slope),
37  m_y_slope(y_slope),
38  m_near_LocRecCorr(near_hit),
39  m_far_LocRecCorr(far_hit)
40 {
41 }
ALFA_GloRecEvent::m_x
float m_x
Definition: ALFA_GloRecEvent.h:67
ALFA_GloRecEvent::m_y
float m_y
Definition: ALFA_GloRecEvent.h:68
ALFA_GloRecEvent::~ALFA_GloRecEvent
~ALFA_GloRecEvent()
Definition: ALFA_GloRecEvent.cxx:22
ALFA_GloRecEvent::m_far_LocRecCorr
const ALFA_LocRecCorrEvent * m_far_LocRecCorr
Definition: ALFA_GloRecEvent.h:72
ALFA_GloRecEvent::m_y_slope
float m_y_slope
Definition: ALFA_GloRecEvent.h:70
ALFA_LocRecCorrEvent
Definition: ALFA_LocRecCorrEvent.h:8
ALFA_GloRecEvent::m_x_slope
float m_x_slope
Definition: ALFA_GloRecEvent.h:69
ALFA_GloRecEvent::ALFA_GloRecEvent
ALFA_GloRecEvent()
Definition: ALFA_GloRecEvent.cxx:10
ALFA_GloRecEvent::m_near_LocRecCorr
const ALFA_LocRecCorrEvent * m_near_LocRecCorr
Definition: ALFA_GloRecEvent.h:71
ALFA_GloRecEvent::m_arm
int m_arm
Definition: ALFA_GloRecEvent.h:66
ALFA_GloRecEvent.h