Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:57:55

0001 #ifndef MERunPanel_hh
0002 #define MERunPanel_hh
0003 
0004 #include <TGFrame.h>
0005 #include <TGButton.h>
0006 #include <TGMsgBox.h>
0007 #include <TGListBox.h>
0008 #include <TGText.h>
0009 #include <TGNumberEntry.h>
0010 
0011 class MusEcalGUI;
0012 
0013 class MERunPanel {
0014 
0015 private:
0016 
0017   TGTransientFrame  *fMain;
0018   TGVerticalFrame   *fVframe1;
0019   TGGroupFrame      *f_Run_Group;
0020   TGLayoutHints     *fHint1, *fHint2, *fHint3;
0021   TGListBox         *f_RunList;
0022 
0023   TGGroupFrame* f_Range_Group;
0024 
0025   Bool_t fClose;
0026 
0027   MusEcalGUI* _gui;
0028 
0029 public:
0030 
0031   MERunPanel( const TGWindow *p, MusEcalGUI* main, UInt_t w, UInt_t h );
0032   virtual ~MERunPanel();
0033 
0034   // slots
0035   void CloseWindow();
0036   void DoClose();
0037   void SetCurrentRun( UInt_t );
0038 
0039 ClassDef(MERunPanel,0) // MERunPanel -- 
0040 
0041 };
0042 
0043 #endif