]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/EveDet/AliEveTPCSectorVizEditor.h
Merge the following revisions between 29371 and 30342 from
[u/mrichter/AliRoot.git] / EVE / EveDet / AliEveTPCSectorVizEditor.h
index b06e457849975cf45aee9785f6813a82201994ce..9e61fe1ad5cd205a1925eb36db5320e117bea2ff 100644 (file)
@@ -7,8 +7,8 @@
  * full copyright notice.                                                 *
  **************************************************************************/
 
-#ifndef ALIEVE_TPCSectorVizEditor_H
-#define ALIEVE_TPCSectorVizEditor_H
+#ifndef AliEveTPCSectorVizEditor_H
+#define AliEveTPCSectorVizEditor_H
 
 #include <TGedFrame.h>
 
@@ -20,37 +20,20 @@ class TGHSlider;
 
 class TEveGValuator;
 class TEveGDoubleValuator;
-class TEveTransSubEditor;
-
 
 class AliEveTPCSectorViz;
 
+//------------------------------------------------------------------------------
+// AliEveTPCSectorVizEditor
+//
+// Editor for AliEveTPCSectorViz.
+
 class AliEveTPCSectorVizEditor : public TGedFrame
 {
-  AliEveTPCSectorVizEditor(const AliEveTPCSectorVizEditor&);            // Not implemented
-  AliEveTPCSectorVizEditor& operator=(const AliEveTPCSectorVizEditor&); // Not implemented
-
-protected:
-  AliEveTPCSectorViz* fM; // fModel dynamic-casted to AliEveTPCSectorVizEditor
-
-  TEveTransSubEditor* fHMTrans;
-
-  TEveGValuator* fSectorID;
-  TGCheckButton*    fAutoTrans;
-
-  TGCheckButton*    fRnrInn;
-  TGCheckButton*    fRnrOut1;
-  TGCheckButton*    fRnrOut2;
-
-  TEveGValuator* fThreshold;
-  TEveGValuator* fMaxVal;
-
-  TEveGDoubleValuator* fTime;
-
 public:
   AliEveTPCSectorVizEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
                     UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
-  ~AliEveTPCSectorVizEditor();
+  virtual ~AliEveTPCSectorVizEditor() {}
 
   virtual void SetModel(TObject* obj);
 
@@ -66,7 +49,26 @@ public:
 
   void DoTime();
 
-  ClassDef(AliEveTPCSectorVizEditor, 0); // Editor for AliEveTPCSectorViz
-}; // endclass AliEveTPCSectorVizEditor
+protected:
+  AliEveTPCSectorViz   *fM;          // Model dynamic-casted to AliEveTPCSectorVizEditor
+
+  TEveGValuator        *fSectorID;   // Widget for SectorID.
+  TGCheckButton        *fAutoTrans;  // Widget for AutoTrans.
+
+  TGCheckButton        *fRnrInn;     // Widget for RnrInn.
+  TGCheckButton        *fRnrOut1;    // Widget for RnrOut1.
+  TGCheckButton        *fRnrOut2;    // Widget for RnrOut2.
+
+  TEveGValuator        *fThreshold;  // Widget for Threshold.
+  TEveGValuator        *fMaxVal;     // Widget for MaxVal.
+
+  TEveGDoubleValuator  *fTime;       // Widget for time-range.
+
+private:
+  AliEveTPCSectorVizEditor(const AliEveTPCSectorVizEditor&);            // Not implemented
+  AliEveTPCSectorVizEditor& operator=(const AliEveTPCSectorVizEditor&); // Not implemented
+
+  ClassDef(AliEveTPCSectorVizEditor, 0); // Editor for AliEveTPCSectorViz.
+};
 
 #endif