ATLAS Offline Software
Loading...
Searching...
No Matches
ALFA_LocRecCorrEvent.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_pot_num = 0;
13 m_xBeam = 0.0;
14 m_xLHC = 0.0;
15 m_xPot = 0.0;
16 m_xStat = 0.0;
17 m_yBeam = 0.0;
18 m_yLHC = 0.0;
19 m_yPot = 0.0;
20 m_yStat = 0.0;
21 m_zLHC = 0.0;
22}
23
24// destructor
26
27ALFA_LocRecCorrEvent::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):
28 m_iAlgoNum(iAlgoNum), m_pot_num(pot_num), m_xLHC(xLHC), m_yLHC(yLHC), m_zLHC(zLHC), m_xPot(xPot), m_yPot(yPot), m_xStat(xStat), m_yStat(yStat), m_xBeam(xBeam), m_yBeam(yBeam)
29{}