source: trunk/MagicSoft/Mars/mtemp/mifae/library/MHillasDisplay.h@ 4162

Last change on this file since 4162 was 4141, checked in by rico, 21 years ago
*** empty log message ***
File size: 965 bytes
Line 
1#ifndef MARS_MHillasDisplay
2#define MARS_MHillasDisplay
3
4#ifndef MARS_MDisplay
5#include "MDisplay.h"
6#endif
7
8class MCerPhotEvt;
9class MSrcPosCam;
10class MGeomCam;
11class MHillas;
12class MNewImagePar;
13
14class MHillasDisplay : public MDisplay
15{
16 private:
17 MHillas* fHillas; // pointer to container with the hillas parameters
18 MNewImagePar* fNewImage; // pointer to container with the new image parameters
19 MSrcPosCam* fSrcPos; // pointer to the source position in camera
20
21 virtual Int_t PreProcess(MParList *plist);
22 virtual Int_t Process();
23
24 public:
25 MHillasDisplay(MCerPhotEvt* event, MGeomCam* geom, Int_t type=0,
26 const char* name=NULL, const char* title=NULL);
27
28 virtual ~MHillasDisplay(){};
29
30 void SetHillas(MHillas* hillas) {fHillas=hillas;}
31 void SetSrcPos(MSrcPosCam* srcpos) {fSrcPos=srcpos;}
32
33 virtual void Paint(Option_t* option);
34
35 ClassDef(MHillasDisplay, 0) // task to display cleaned events with hillas parameters
36};
37
38#endif
39
Note: See TracBrowser for help on using the repository browser.