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

Last change on this file since 2371 was 2210, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 750 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 MHCamera;
12
13class MGCamDisplay : public MGEvtDisplay
14{
15private:
16 Bool_t fDisplayRaw;
17 Bool_t fDisplayHillas;
18
19 TGListBox *fPixelList;
20
21 MHCamera *fDisplay[5];
22 TCanvas *fCanvas2[5];
23
24 void AddSetupElements();
25 void UpdateDisplay();
26
27 MGeomCam *SetupTaskList();
28
29public:
30 MGCamDisplay(const char *filename,
31 const TGWindow *p, /*const TGWindow *main,*/
32 UInt_t w, UInt_t h);
33
34 Bool_t ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2);
35
36 ClassDef(MGCamDisplay, 0) // Display for camera images (cerenkov events)
37};
38
39#endif
40
41
Note: See TracBrowser for help on using the repository browser.