ATLAS Offline Software
Loading...
Searching...
No Matches
ALFA_LocRecCorrEvent.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef ALFA_LocRecCorrEvent_h
6#define ALFA_LocRecCorrEvent_h
7
9
10public:
13
14
15 ALFA_LocRecCorrEvent(int iAlgoNum, int pot_num, float xLHC, float yLHC, float zLHC, float xPot, float yPot, float xStat, float yStat, float xBeam, float yBeam);
16
17 inline int getAlgoNum() const {return m_iAlgoNum;}
18 inline int getPotNum() const {return m_pot_num;}
19 inline float getXpositionLHC() const {return m_xLHC;}
20 inline float getYpositionLHC() const {return m_yLHC;}
21 inline float getZpositionLHC() const {return m_zLHC;}
22 inline float getXpositionPot() const {return m_xPot;}
23 inline float getYpositionPot() const {return m_yPot;}
24 inline float getXpositionStat() const {return m_xStat;}
25 inline float getYpositionStat() const {return m_yStat;}
26 inline float getXpositionBeam() const {return m_xBeam;}
27 inline float getYpositionBeam() const {return m_yBeam;}
28
29private:
32 float m_xLHC;
33 float m_yLHC;
34 float m_zLHC;
35 float m_xPot;
36 float m_yPot;
37 float m_xStat;
38 float m_yStat;
39 float m_xBeam;
40 float m_yBeam;
41};
42
43#endif