source: trunk/MagicSoft/Mars/mgui/MCamDisplay.h@ 595

Last change on this file since 595 was 595, checked in by harald, 24 years ago
Added the first implementation of a EventDisplay for MAGIC. The class doing the job is called "MCamDisplay".
File size: 567 bytes
Line 
1#ifndef MCAMDISPLAY_H
2#define MCAMDISPLAY_H
3
4#include <iostream>
5
6#include "MAGIC.h"
7
8class TClonesArray ;
9class MNphotEvent ;
10
11class MCamDisplay : public TObject
12{
13 private:
14 Int_t fNbPixels ; //
15 TClonesArray *fPixels ; //!
16
17 public:
18
19 MCamDisplay ( Int_t type=0 ) ;
20
21 ~MCamDisplay () ;
22
23 void Init() ;
24
25 void Draw(Option_t *option = "" ) ;
26
27 void Draw( MNphotEvent *event) ;
28
29 void Reset() ;
30 void TestColor() ;
31
32 //Int_t GetNbPixels() ;
33
34 ClassDef(MCamDisplay, 1) // Base (abstract) class for a task
35};
36
37#endif
38
Note: See TracBrowser for help on using the repository browser.