ATLAS Offline Software
AFP_GeoModelManager.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #include "AFP_GeoModelManager.h"
7 {
8  setName(std::string("AFP_GeoModel"));
9 }
10 
11 
13 {
14 }
15 
16 
18 {
19  return m_volume.size();
20 }
21 
22 PVConstLink AFP_GeoModelManager::getTreeTop(unsigned int i) const
23 {
24  return m_volume[i];
25 }
26 
27 void AFP_GeoModelManager::addTreeTop(const PVLink& vol)
28 {
29  m_volume.push_back(vol);
30 }
AFP_GeoModelManager::getNumTreeTops
virtual unsigned int getNumTreeTops() const
Definition: AFP_GeoModelManager.cxx:17
AFP_GeoModelManager::addTreeTop
void addTreeTop(const PVLink &)
Definition: AFP_GeoModelManager.cxx:27
AFP_GeoModelManager::getTreeTop
virtual PVConstLink getTreeTop(unsigned int i) const
Definition: AFP_GeoModelManager.cxx:22
lumiFormat.i
int i
Definition: lumiFormat.py:85
AFP_GeoModelManager::m_volume
std::vector< PVLink > m_volume
Definition: AFP_GeoModelManager.h:30
AFP_GeoModelManager.h
AFP_GeoModelManager::AFP_GeoModelManager
AFP_GeoModelManager()
Definition: AFP_GeoModelManager.cxx:6
AFP_GeoModelManager::~AFP_GeoModelManager
~AFP_GeoModelManager()
Definition: AFP_GeoModelManager.cxx:12