ATLAS Offline Software
StoredPhysVol.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/GeoFullPhysVol.h"
7 #include <algorithm>
8 #include <sstream>
9 #include <stdexcept>
13 StoredPhysVol::StoredPhysVol( GeoFullPhysVol * physVol )
14  : m_physVol(physVol) { }
15 
20 GeoFullPhysVol * StoredPhysVol::getPhysVol() {
21  return m_physVol;
22 }
23 
24 
25 const GeoFullPhysVol *StoredPhysVol::getPhysVol() const{
26  return m_physVol;
27 }
28 
StoredPhysVol::m_physVol
GeoIntrusivePtr< GeoFullPhysVol > m_physVol
Definition: StoredPhysVol.h:49
StoredPhysVol::StoredPhysVol
StoredPhysVol(GeoFullPhysVol *physVol)
Constructor(s)
Definition: StoredPhysVol.cxx:13
StoredPhysVol::getPhysVol
GeoFullPhysVol * getPhysVol()
Destructor.
Definition: StoredPhysVol.cxx:20
StoredPhysVol.h