ATLAS Offline Software
Loading...
Searching...
No Matches
ALFA_LocRecCorrODEvent.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_LocRecCorrODEvent_h
6#define ALFA_LocRecCorrODEvent_h
7
9
10public:
13
14
15 ALFA_LocRecCorrODEvent(int iAlgoNum, int pot_num, int side, float yLHC, float zLHC, float yPot, float yStat, float yBeam);
16
17 inline int getAlgoNum() const {return m_iAlgoNum;}
18 inline int getPotNum() const {return m_pot_num;}
19 inline int getSide() const {return m_side;}
20 inline float getYpositionLHC() const {return m_yLHC;}
21 inline float getZpositionLHC() const {return m_zLHC;}
22 inline float getYpositionPot() const {return m_yPot;}
23 inline float getYpositionStat() const {return m_yStat;}
24 inline float getYpositionBeam() const {return m_yBeam;}
25
26private:
29 int m_side;
30 float m_yLHC;
31 float m_zLHC;
32 float m_yPot;
33 float m_yStat;
34 float m_yBeam;
35};
36
37#endif