ATLAS Offline Software
Loading...
Searching...
No Matches
StoredAlignX.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#include "GeoModelKernel/GeoAlignableTransform.h"
7#include <algorithm>
8#include <sstream>
9#include <stdexcept>
13StoredAlignX::StoredAlignX( GeoAlignableTransform * alignX )
14 : m_alignX(alignX) {}
15
20
21GeoAlignableTransform * StoredAlignX::getAlignX() {
22 return m_alignX;
23}
24
25
26const GeoAlignableTransform *StoredAlignX::getAlignX() const{
27 return m_alignX;
28}
29
GeoAlignableTransform * getAlignX()
GeoAlignableTransform * m_alignX
StoredAlignX(GeoAlignableTransform *alignX)
Constructor(s)
virtual ~StoredAlignX()
Destructor.