]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/Alieve/AliEveJetPlaneEditor.h
Move contents of EVE/Alieve to EVE/EveDet as most code will remain there.
[u/mrichter/AliRoot.git] / EVE / Alieve / AliEveJetPlaneEditor.h
diff --git a/EVE/Alieve/AliEveJetPlaneEditor.h b/EVE/Alieve/AliEveJetPlaneEditor.h
deleted file mode 100644 (file)
index cf00b4c..0000000
+++ /dev/null
@@ -1,95 +0,0 @@
-// $Id$
-// Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
-
-/**************************************************************************
- * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
- * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
- * full copyright notice.                                                 *
- **************************************************************************/
-
-#ifndef ALIEVE_JetPlaneEditor_H
-#define ALIEVE_JetPlaneEditor_H
-
-#include <TGedFrame.h>
-#include <RQ_OBJECT.h>
-
-class TGButton;
-class TGCheckButton;
-class TGNumberEntry;
-class TGColorSelect;
-
-class TEveGValuator;
-
-
-// class TEveGValuator;
-
-class AliEveJetPlane;
-
-class AliEveJetPlaneEditor : public TGedFrame
-{
-private:
-  AliEveJetPlaneEditor(const AliEveJetPlaneEditor&);            // Not implemented
-  AliEveJetPlaneEditor& operator=(const AliEveJetPlaneEditor&); // Not implemented
-
-protected:
-  AliEveJetPlane          *fM; // fModel dynamic-casted to AliEveJetPlaneEditor
-
-  // Declare widgets
-  // TGSomeWidget*   fXYZZ;
-  TGCheckButton*     fRnrJets;
-  TGCheckButton*     fRnrTracks;
-  TEveGValuator*  fEnergyScale;
-  TEveGValuator*  fEnergyColorScale;
-  TGButton          *fOneSelection, *fTwoSelection;
-  TGButton          *fInformationSetup;
-
-public:
-  AliEveJetPlaneEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
-                UInt_t options = kChildFrame, Pixel_t back=GetDefaultFrameBackground());
-  virtual ~AliEveJetPlaneEditor();
-
-  virtual void SetModel(TObject* obj);
-
-  // Declare callback/slot methods
-  // void DoXYZZ();
-  void DoRnrJets();
-  void DoRnrTracks();
-  void DoEnergyColorScale();
-  void DoEnergyScale();
-  void DoOneSelection();
-  void DoTwoSelection();
-  void DoStaticDataWindow();
-
-
-  // --- Internal class for common settings
-public:
-  class StaticDataWindow : public TGTransientFrame
-  {
-  private:
-    TGCompositeFrame    *fFrame1, *fF2;
-    TGButton            *fOkButton, *fCancelButton;
-    TGLayoutHints       *fL1, *fL2, *fL3, *fL5;
-    TGTab               *fTab;
-    TGButton            *fChk1, *fChk2,*fChk3, *fChk4,*fChk5;
-
-  public:
-    StaticDataWindow(const TGWindow *p, const TGWindow *main, UInt_t w, UInt_t h,
-                    UInt_t options = kVerticalFrame);
-    virtual ~StaticDataWindow();
-
-    // slots
-    void DoClose();
-    void DoOK();
-    void DoCancel();
-    void DoTab(Int_t id);
-
-    ClassDef(StaticDataWindow, 0);
-  };
-
-protected:
-  static StaticDataWindow* fgStaticWindow;
-
-  ClassDef(AliEveJetPlaneEditor, 1); // Editor for AliEveJetPlane
-}; // endclass AliEveJetPlaneEditor
-
-#endif