source: trunk/MagicSoft/Mars/meventdisp/MGFadcDisp.h@ 961

Last change on this file since 961 was 961, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 703 bytes
Line 
1#ifndef MGFADCDISP_H
2#define MGFADCDISP_H
3
4#ifndef MAGIC_H
5#include "MAGIC.h"
6#endif
7
8#ifndef MGEVTDISPLAY_H
9#include "MGEvtDisplay.h"
10#endif
11
12class TGListBox;
13class MRawEvtData;
14
15class MGFadcDisp : public MGEvtDisplay
16{
17private:
18 TGListBox *fPixelList;
19
20 void AddSetupElements();
21 void UpdateDisplay();
22 void DisplayPixel(Int_t lastsel=-1, Bool_t update=kTRUE);
23
24 MRawEvtData *GetEvent() const;
25
26public:
27
28 MGFadcDisp(char *filename, char *treename,
29 const TGWindow *p, const TGWindow *main, UInt_t w, UInt_t h);
30
31 virtual Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
32
33 ClassDef(MGFadcDisp, 0) // Display for single pixel fadc data
34};
35
36#endif
37
38
Note: See TracBrowser for help on using the repository browser.