00001 // @(#)root/eve:$Id: TEveTrackProjectedGL.h 21252 2007-12-07 01:39:32Z matevz $ 00002 // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. * 00006 * All rights reserved. * 00007 * * 00008 * For the licensing terms see $ROOTSYS/LICENSE. * 00009 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00010 *************************************************************************/ 00011 00012 #ifndef ROOT_TEveTrackProjectedGL 00013 #define ROOT_TEveTrackProjectedGL 00014 00015 #include "TEveTrackGL.h" 00016 00017 class TGLViewer; 00018 class TGLScene; 00019 00020 class TEveTrackProjected; 00021 00022 class TEveTrackProjectedGL : public TEveTrackGL 00023 { 00024 private: 00025 TEveTrackProjectedGL(const TEveTrackProjectedGL&); // Not implemented 00026 TEveTrackProjectedGL& operator=(const TEveTrackProjectedGL&); // Not implemented 00027 00028 protected: 00029 TEveTrackProjected* fM; // Model object. 00030 00031 public: 00032 TEveTrackProjectedGL(); 00033 virtual ~TEveTrackProjectedGL() {} 00034 00035 virtual Bool_t SetModel(TObject* obj, const Option_t* opt=0); 00036 virtual void DirectDraw(TGLRnrCtx & rnrCtx) const; 00037 00038 ClassDef(TEveTrackProjectedGL, 0); // GL-renderer for TEveTrackProjected class. 00039 }; 00040 00041 #endif