Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TEveTrackProjectedGL.h
Go to the documentation of this file.
1 // @(#)root/eve:$Id$
2 // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TEveTrackProjectedGL
13 #define ROOT_TEveTrackProjectedGL
14 
15 #include "TEveTrackGL.h"
16 
17 class TGLViewer;
18 class TGLScene;
19 
20 class TEveTrackProjected;
21 
22 class TEveTrackProjectedGL : public TEveTrackGL
23 {
24 private:
25  TEveTrackProjectedGL(const TEveTrackProjectedGL&); // Not implemented
26  TEveTrackProjectedGL& operator=(const TEveTrackProjectedGL&); // Not implemented
27 
28 protected:
29  TEveTrackProjected* fM; // Model object.
30 
31 public:
32  TEveTrackProjectedGL();
33  virtual ~TEveTrackProjectedGL() {}
34 
35  virtual Bool_t SetModel(TObject* obj, const Option_t* opt=0);
36  virtual void DirectDraw(TGLRnrCtx & rnrCtx) const;
37 
38  ClassDef(TEveTrackProjectedGL, 0); // GL-renderer for TEveTrackProjected class.
39 };
40 
41 #endif