]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/Alieve/TPCSector2DEditor.h
Minor changes in the local case based on the v4-04-Rev-14
[u/mrichter/AliRoot.git] / EVE / Alieve / TPCSector2DEditor.h
index 32a9c5294cb4ec74a929e2b83f7acfb38066dd17..baf658dff02ef917e3fc570130cf0f66f5ba0b05 100644 (file)
@@ -6,10 +6,7 @@
 #include <TGedFrame.h>
 
 class TGCheckButton;
-class TGNumberEntry;
-class TGColorSelect;
-class TGDoubleHSlider;
-class TGHSlider;
+class TGComboBox;
 
 
 namespace Alieve {
@@ -18,6 +15,9 @@ class TPCSector2D;
 
 class TPCSector2DEditor : public TGedFrame
 {
+  TPCSector2DEditor(const TPCSector2DEditor&);            // Not implemented
+  TPCSector2DEditor& operator=(const TPCSector2DEditor&); // Not implemented
+
 protected:
   TPCSector2D* fM; // fModel dynamic-casted to TPCSector2DEditor
 
@@ -25,18 +25,23 @@ protected:
   TGCheckButton*   fAverage;
 
   TGCheckButton*   fUseTexture;
+  TGCheckButton*   fPickEmpty;
+  TGComboBox*      fPickMode;
 
 public:
-  TPCSector2DEditor(const TGWindow* p, Int_t id, Int_t width = 170, Int_t height = 30, UInt_t options = kChildFrame, Pixel_t back = GetDefaultFrameBackground());
+  TPCSector2DEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
+                   UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
   ~TPCSector2DEditor();
 
-  virtual void SetModel(TVirtualPad* pad, TObject* obj, Int_t event);
+  virtual void SetModel(TObject* obj);
 
   void DoShowMax();
   void DoAverage();
   void SetupAverage();
 
   void DoUseTexture();
+  void DoPickEmpty();
+  void DoPickMode(Int_t mode);
 
   ClassDef(TPCSector2DEditor, 0); // Editor for TPCSector2D
 }; // endclass TPCSector2DEditor