Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:11:43

0001 // @(#)root/eve:$Id$
0002 // Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_TEveTrackProjectedGL
0013 #define ROOT_TEveTrackProjectedGL
0014 
0015 #include "TEveTrackGL.h"
0016 
0017 class TGLViewer;
0018 class TGLScene;
0019 
0020 class TEveTrackProjected;
0021 
0022 class TEveTrackProjectedGL : public TEveTrackGL
0023 {
0024 private:
0025    TEveTrackProjectedGL(const TEveTrackProjectedGL&);            // Not implemented
0026    TEveTrackProjectedGL& operator=(const TEveTrackProjectedGL&); // Not implemented
0027 
0028 protected:
0029    TEveTrackProjected* fM; // Model object.
0030 
0031 public:
0032    TEveTrackProjectedGL();
0033    ~TEveTrackProjectedGL() override {}
0034 
0035    Bool_t SetModel(TObject* obj, const Option_t *opt = nullptr) override;
0036    void   DirectDraw(TGLRnrCtx & rnrCtx) const override;
0037 
0038    ClassDefOverride(TEveTrackProjectedGL, 0); // GL-renderer for TEveTrackProjected class.
0039 };
0040 
0041 #endif