]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/Alieve/TPCSector3DGL.h
Fix effc++ warnings.
[u/mrichter/AliRoot.git] / EVE / Alieve / TPCSector3DGL.h
1 // $Header$
2
3 #ifndef ALIEVE_TPCSector3DGL_H
4 #define ALIEVE_TPCSector3DGL_H
5
6 #include <TGLObject.h>
7
8 #include <Alieve/TPCSectorData.h>
9
10 namespace Reve {
11 class BoxSetGL;
12 }
13
14 namespace Alieve {
15
16 class TPCSector3D;
17
18 class TPCSector3DGL : public TGLObject
19 {
20   TPCSector3DGL(const TPCSector3DGL&);            // Not implemented
21   TPCSector3DGL& operator=(const TPCSector3DGL&); // Not implemented
22
23 protected:
24   TPCSector3D*    fSector; // fModel dynamic-casted to TPCSector3DGL
25   Reve::BoxSetGL* fBoxRnr;
26
27   mutable UInt_t  fRTS;
28
29   virtual void DirectDraw(const TGLDrawFlags & flags) const;
30
31 public:
32   TPCSector3DGL();
33   virtual ~TPCSector3DGL();
34
35   virtual Bool_t SetModel(TObject* obj);
36   virtual void   SetBBox();
37
38   void DrawSegmentFrame(const TPCSectorData::SegmentInfo& s,
39                         Int_t botExtraPads=0, Int_t topExtraPads=0) const;
40
41   ClassDef(TPCSector3DGL, 0);
42 }; // endclass TPCSector3DGL
43
44 }
45
46 #endif