]> git.uio.no Git - u/mrichter/AliRoot.git/blame - GEODB/AliGSuperShape.cxx
This commit was generated by cvs2svn to compensate for changes in r209,
[u/mrichter/AliRoot.git] / GEODB / AliGSuperShape.cxx
CommitLineData
ab2f6604 1// -*- C++ -*-
2//
3// 1998/10/22
4// ---------------------------------------------------------------------------
5//
6// AliGSuperShape Class
7//
8// This file is part of the ALICE Geometry Database .
9//
10// Author: Joana E. Santo
11//
12
13#include "AliGSuperShape.h"
14#include <TString.h>
15
16ClassImp(AliGSuperShape)
17
18//----------------------------------------------------------------------
19
20AliGSuperShape::AliGSuperShape()
21{
22 /* Default Constructor */
23 fExpression = "";
24 fName = "";
25 fShapes = NULL;
26 fTitle = "";
27 fTransf = NULL;
28}
29
30//----------------------------------------------------------------------
31
32AliGSuperShape::AliGSuperShape( Text_t* name, Text_t* title, AliGShape* shapes, AliGTransform* trans, Text_t* expression ):AliGShape(name,title)
33{
34 /* Constructor */
35 fExpression = expression;
36 fShapes = new TObjArray();
37 fTransf = new TObjArray();
38}
39
40//----------------------------------------------------------------------
41
42AliGSuperShape::~AliGSuperShape(){
43 /* Destructor */
44 if(fShapes) delete fShapes;
45 if(fTransf) delete fTransf;
46}
47
48//----------------------------------------------------------------------
49
50void AliGSuperShape::Add( AliGShape *shape )
51{
52
53}
54
55//----------------------------------------------------------------------
56
57void AliGSuperShape::Add( AliGTransform *trans )
58{
59
60}
61
62//----------------------------------------------------------------------
63
64void AliGSuperShape::Add( Text_t *expression )
65{
66
67}
68
69//----------------------------------------------------------------------
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88