2 // Author: Stefano Carrazza 2010
4 /**************************************************************************
5 * Copyright(c) 1998-2009, ALICE Experiment at CERN, all rights reserved. *
6 * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for *
7 * full copyright notice. *
8 **************************************************************************/
10 #ifndef ALIEVEBEAMSINFOEDITOR_H
11 #define ALIEVEBEAMSINFOEDITOR_H
13 #include "TGedFrame.h"
23 class AliEveBeamsInfo;
25 //______________________________________________________________________________
26 // Short description of AliEveBeamsInfoEditor
29 class AliEveBeamsInfoEditor : public TGedFrame
32 AliEveBeamsInfoEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
33 UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
34 virtual ~AliEveBeamsInfoEditor() {}
36 virtual void SetModel(TObject* obj);
38 // Declare callback/slot methods
39 void ShowEventSelection();
40 void SelectEventSelection(Int_t id);
45 AliEveBeamsInfo *fM; // Model object.
48 TGGroupFrame *fEventSelection; // event selection group box
49 TGCheckButton *fShowEvents; // display information checkbox
50 TGComboBox *fSelect; // combo box display
51 TGTextButton *fButtonPrev; // previous event selection
52 TGTextButton *fButtonNext; // next event selection
54 AliEveBeamsInfoEditor(const AliEveBeamsInfoEditor&); // Not implemented
55 AliEveBeamsInfoEditor& operator=(const AliEveBeamsInfoEditor&); // Not implemented
57 ClassDef(AliEveBeamsInfoEditor, 0); // GUI editor for AliEveBeamsInfo.