]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVE/EveHLT/AliEveHOMERManagerEditor.h
From Jochen - EveHLT development accumulated since the end of March.
[u/mrichter/AliRoot.git] / EVE / EveHLT / AliEveHOMERManagerEditor.h
index 2b53f8ff6fb12da76699f666451978fec28b04f3..d04e2b5b3a453e11ed20dd2d88064748c33a7c86 100644 (file)
@@ -22,23 +22,31 @@ class AliEveHOMERManager;
 class AliEveHOMERManagerEditor : public TGedFrame
 {
 public:
-  AliEveHOMERManagerEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30, UInt_t options = kChildFrame, Pixel_t back=GetDefaultFrameBackground());
+  AliEveHOMERManagerEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30, 
+                          UInt_t options = kChildFrame, Pixel_t back=GetDefaultFrameBackground());
   virtual ~AliEveHOMERManagerEditor() {}
 
   virtual void SetModel(TObject* obj);
 
   // Declare callback/slot methods
-  void DoButt();
+  void ConnectToHLT();
+  void NextEvent();
+  void EventLoop();
+
 
 protected:
   AliEveHOMERManager  *fM; // Model object.
 
-  TGTextButton     *fButt; // Button to connect to HOMER.
+  TGTextButton     *fButtonConnect;   // Button to connect to HOMER.
+  TGTextButton     *fButtonNextEvent; // Button to call next Event
+  TGTextButton     *fButtonEventLoop; // Button to start/stop event loop
 
 private:
   AliEveHOMERManagerEditor(const AliEveHOMERManagerEditor&);            // Not implemented
   AliEveHOMERManagerEditor& operator=(const AliEveHOMERManagerEditor&); // Not implemented
 
+  Bool_t fEventLoopStarted;
+
   ClassDef(AliEveHOMERManagerEditor, 0); // Editor for AliEveHOMERManager
 };