]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/Alieve/.SKEL-gl.h
Fix handling of AliESDfriends.root.
[u/mrichter/AliRoot.git] / EVE / Alieve / .SKEL-gl.h
index 10d8242e100139eb489beda0515a0f92c185b1c8..7ebfa505338eb24da4f729a00aab26f0068b5e53 100644 (file)
@@ -5,12 +5,19 @@
 
 #include <TGLObject.h>
 
+class TGLViewer;
+class TGLScene;
+
 namespace Alieve {
 
 class STEM;
 
 class CLASS : public TGLObject
 {
+private:
+  CLASS(const CLASS&);            // Not implemented
+  CLASS& operator=(const CLASS&); // Not implemented
+
 protected:
   STEM* fM; // fModel dynamic-casted to CLASS
 
@@ -23,6 +30,10 @@ public:
   virtual Bool_t SetModel(TObject* obj);
   virtual void   SetBBox();
 
+  // To support two-level selection
+  // virtual Bool_t SupportsSecondarySelect() const { return kTRUE; }
+  // virtual void ProcessSelection(UInt_t* ptr, TGLViewer*, TGLScene*);
+
   ClassDef(CLASS, 0);
 }; // endclass CLASS