source: trunk/MagicSoft/Mars/meventdisp/MGCamDisplay.h@ 959

Last change on this file since 959 was 959, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 705 bytes
Line 
1#ifndef MGCAMDISPLAY_H
2#define MGCAMDISPLAY_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;
13
14class MGeomCam;
15class MCamDisplay;
16
17class MGCamDisplay : public MGEvtDisplay
18{
19private:
20 Bool_t fDisplayRaw;
21 Bool_t fDisplayHillas;
22
23 TGListBox *fPixelList;
24 MCamDisplay *fDisplay;
25
26 void AddSetupElements();
27 void UpdateDisplay();
28
29 MGeomCam *SetupTaskList();
30
31public:
32 MGCamDisplay(const char *filename,
33 const TGWindow *p, const TGWindow *main,
34 UInt_t w, UInt_t h);
35
36 Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
37
38 ClassDef(MGCamDisplay, 0)
39};
40
41#endif
42
43
Note: See TracBrowser for help on using the repository browser.