ATLAS Offline Software
Loading...
Searching...
No Matches
VP1GeomUtils.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/GeoMaterial.h"
7#include "GeoModelKernel/GeoElement.h"
8
9//______________________________________________________________________________________
10QStringList VP1GeomUtils::geoMaterialToStringList( const GeoMaterial* mat )
11{
12 //Fixme: Show all info.
13 QStringList l;
14 l << mat->getName().c_str();
15 return l;
16}
17
18
19//______________________________________________________________________________________
20QStringList VP1GeomUtils::geoElementToStringList( const GeoElement* elem )
21{
22 //Fixme: Show all info.
23 QStringList l;
24 l << elem->getName().c_str();
25 return l;
26}
static QStringList geoMaterialToStringList(const GeoMaterial *)
static QStringList geoElementToStringList(const GeoElement *)