ATLAS Offline Software
BCMExtra.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #include "BCMExtra.h"
6 
7 void BCMExtra::SetVertex(double X, double Y, double Z)
8 {
9  m_vertexX = X;
10  m_vertexY = Y;
11  m_vertexZ = Z;
12 }
13 
15 {
16  return m_vertexX;
17 }
18 
20 {
21  return m_vertexY;
22 }
23 
25 {
26  return m_vertexZ;
27 }
28 
Monitored::Z
@ Z
Definition: HistogramFillerUtils.h:24
BCMExtra::m_vertexX
double m_vertexX
Definition: BCMExtra.h:19
BCMExtra::SetVertex
void SetVertex(double X, double Y, double Z)
Definition: BCMExtra.cxx:7
BCMExtra::GetVertexY
double GetVertexY()
Definition: BCMExtra.cxx:19
BCMExtra::m_vertexZ
double m_vertexZ
Definition: BCMExtra.h:21
Monitored::X
@ X
Definition: HistogramFillerUtils.h:24
BCMExtra::m_vertexY
double m_vertexY
Definition: BCMExtra.h:20
BCMExtra.h
Monitored::Y
@ Y
Definition: HistogramFillerUtils.h:24
BCMExtra::GetVertexX
double GetVertexX()
Definition: BCMExtra.cxx:14
BCMExtra::GetVertexZ
double GetVertexZ()
Definition: BCMExtra.cxx:24