]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - ALIFAST/AliFFruit.h
Change my Massimo Masera in the default constructor to bring things into
[u/mrichter/AliRoot.git] / ALIFAST / AliFFruit.h
... / ...
CommitLineData
1#ifndef AliFFruit_H
2#define AliFFruit_H
3
4//////////////////////////////////////////////////////////////////////////
5// //
6// AliFFruit //
7// //
8// Utility class to draw Electrons, photons, Jets, Clusters,etc //
9// //
10//////////////////////////////////////////////////////////////////////////
11
12#ifndef ROOT_TPolyLine3D
13#include <TPolyLine3D.h>
14#endif
15
16class AliFDisplay;
17
18class AliFFruit : public TPolyLine3D {
19
20private:
21 TObject *fFruit; //Pointer to original fruit
22
23public:
24 AliFFruit() {
25 fFruit=0;
26 }
27 AliFFruit(TObject *obj, Float_t eta, Float_t phi, Float_t pt, Int_t type);
28 virtual ~AliFFruit() {;}
29 virtual void Delete(Option_t *option="");
30 TObject *Fruit() {return fFruit;}
31 virtual char *GetObjectInfo(Int_t px, Int_t py);
32
33 ClassDef(AliFFruit, 0) //Utility class to draw Electrons, photons, Jets, Clusters,etc
34};
35
36#endif