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

Last change on this file since 1438 was 1015, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 718 bytes
Line 
1#ifndef MARS_MGCamDisplay
2#define MARS_MGCamDisplay
3
4#ifndef MARS_MGEvtDisplay
5#include "MGEvtDisplay.h"
6#endif
7
8class TGListBox;
9
10class MGeomCam;
11class MCamDisplay;
12
13class MGCamDisplay : public MGEvtDisplay
14{
15private:
16 Bool_t fDisplayRaw;
17 Bool_t fDisplayHillas;
18
19 TGListBox *fPixelList;
20 MCamDisplay *fDisplay;
21
22 void AddSetupElements();
23 void UpdateDisplay();
24
25 MGeomCam *SetupTaskList();
26
27public:
28 MGCamDisplay(const char *filename,
29 const TGWindow *p, const TGWindow *main,
30 UInt_t w, UInt_t h);
31
32 Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
33
34 ClassDef(MGCamDisplay, 0) // Display for camera images (cerenkov events)
35};
36
37#endif
38
39
Note: See TracBrowser for help on using the repository browser.