ATLAS Offline Software
Loading...
Searching...
No Matches
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
7void 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
double m_vertexY
Definition BCMExtra.h:20
void SetVertex(double X, double Y, double Z)
Definition BCMExtra.cxx:7
double GetVertexX()
Definition BCMExtra.cxx:14
double GetVertexZ()
Definition BCMExtra.cxx:24
double m_vertexX
Definition BCMExtra.h:19
double GetVertexY()
Definition BCMExtra.cxx:19
double m_vertexZ
Definition BCMExtra.h:21