ATLAS Offline Software
Loading...
Searching...
No Matches
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
20class GeoShape;
21
22class DumpShape {
23public:
24
25 static QStringList shapeToStringList(const GeoShape* shape);
26private:
27
30
31};
32
33#endif
static QStringList shapeToStringList(const GeoShape *shape)
Definition DumpShape.cxx:34