]>
Commit | Line | Data |
---|---|---|
c1bdda91 | 1 | #ifndef ALI_TRANSFORM_H |
2 | #define ALI_TRANSFORM_H | |
3 | ||
4 | #include "TObject.h" | |
5 | ||
6 | class AliTransform:public TObject { | |
7 | public: | |
8 | virtual ~AliTransform() {}; | |
9 | virtual void Transform(Double_t *x,Int_t *i,UInt_t time, | |
10 | Int_t coordinateType)=0; | |
11 | ||
12 | ClassDef(AliTransform,0) | |
13 | }; | |
14 | ||
15 | #endif |