]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/EveDet/AliEveTOFSectorEditor.h
fix user histogram management and style (Ben)
[u/mrichter/AliRoot.git] / EVE / EveDet / AliEveTOFSectorEditor.h
index 5eea098f17654aa71f84e2dbf897cd53cec76758..d1c2609587a079494a7666f930e9c9f927812aa6 100644 (file)
@@ -7,8 +7,8 @@
  * full copyright notice.                                                 *
  **************************************************************************/
 
-#ifndef ALIEVE_TOFSectorEditor_H
-#define ALIEVE_TOFSectorEditor_H
+#ifndef AliEveTOFSectorEditor_H
+#define AliEveTOFSectorEditor_H
 
 #include <TGedFrame.h>
 
@@ -21,35 +21,11 @@ class TGHSlider;
 
 class TEveGValuator;
 class TEveGDoubleValuator;
-class TEveTransSubEditor;
-
 
 class AliEveTOFSector;
 
 class AliEveTOFSectorEditor : public TGedFrame
 {
-private:
-  AliEveTOFSectorEditor(const AliEveTOFSectorEditor&);            // Not implemented
-  AliEveTOFSectorEditor& operator=(const AliEveTOFSectorEditor&); // Not implemented
-
-protected:
-  AliEveTOFSector*  fM; // Model object.
-
-  TEveGValuator*    fSectorID;
-
-  TGCheckButton*    fAutoTrans;
-
-  TGCheckButton**   fPlate;
-
-  TGCheckButton*    fPlate0;
-  TGCheckButton*    fPlate1;
-  TGCheckButton*    fPlate2;
-  TGCheckButton*    fPlate3;
-  TGCheckButton*    fPlate4;
-
-  TEveGValuator*    fThreshold;
-  TEveGValuator*    fMaxVal;
-
 public:
   AliEveTOFSectorEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
                        UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
@@ -68,7 +44,29 @@ public:
   void DoThreshold();
   void DoMaxVal();
 
+protected:
+  AliEveTOFSector*  fM;         // Model object.
+
+  TEveGValuator*    fSectorID;  // Valuator for sector id.
+
+  TGCheckButton*    fAutoTrans; // Check-button for automatic translation.
+
+  TGCheckButton**   fPlate;     // Check-buttons for plates.
+
+  TGCheckButton*    fPlate0;    // Check-button for plate 0.
+  TGCheckButton*    fPlate1;    // Check-button for plate 1.
+  TGCheckButton*    fPlate2;    // Check-button for plate 2.
+  TGCheckButton*    fPlate3;    // Check-button for plate 3.
+  TGCheckButton*    fPlate4;    // Check-button for plate 4.
+
+  TEveGValuator*    fThreshold; // Valuator for threshold.
+  TEveGValuator*    fMaxVal;    // Valuator for maximum value.
+
+private:
+  AliEveTOFSectorEditor(const AliEveTOFSectorEditor&);            // Not implemented
+  AliEveTOFSectorEditor& operator=(const AliEveTOFSectorEditor&); // Not implemented
+
   ClassDef(AliEveTOFSectorEditor, 0); // Editor for AliEveTOFSector
-}; // endclass AliEveTOFSectorEditor
+};
 
 #endif