ATLAS Offline Software
DumpShape.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef DUMPSHAPE_H
6 #define DUMPSHAPE_H
7 
9 // //
10 // Convenience class used to dump the parameters of a GeoShape to a //
11 // printable form (represented by a QStringList) //
12 // //
13 // Original code by Joe Boudreau, adapted //
14 // in the present form by T. Kittelmann //
15 // //
17 
18 #include <QStringList>
19 
20 class GeoShape;
21 
22 class DumpShape {
23 public:
24 
25  static QStringList shapeToStringList(const GeoShape* shape);
26 private:
27 
28  DumpShape(){};
30 
31 };
32 
33 #endif
DumpShape::shapeToStringList
static QStringList shapeToStringList(const GeoShape *shape)
Definition: DumpShape.cxx:34
DumpShape::DumpShape
DumpShape()
Definition: DumpShape.h:28
DumpShape::~DumpShape
~DumpShape()
Definition: DumpShape.h:29
DumpShape
Definition: DumpShape.h:22