ATLAS Offline Software
Loading...
Searching...
No Matches
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>
13StoredPhysVol::StoredPhysVol( GeoFullPhysVol * physVol )
14 : m_physVol(physVol) { }
15
19
20GeoFullPhysVol * StoredPhysVol::getPhysVol() {
21 return m_physVol;
22}
23
24
25const GeoFullPhysVol *StoredPhysVol::getPhysVol() const{
26 return m_physVol;
27}
28
StoredPhysVol(GeoFullPhysVol *physVol)
Constructor(s)
GeoIntrusivePtr< GeoFullPhysVol > m_physVol
GeoFullPhysVol * getPhysVol()
Destructor.