source: trunk/MagicSoft/Mars/mtemp/MIslandCalc.h@ 4085

Last change on this file since 4085 was 3453, checked in by blanch, 21 years ago
*** empty log message ***
File size: 771 bytes
Line 
1#ifndef MARS_MIslandCalc
2#define MARS_MIslandCalc
3
4#ifndef MARS_MGTask
5#include "MGTask.h"
6#endif
7
8#ifndef ROOT_TArrayF
9#include <TArrayF.h>
10#endif
11
12class MGeomCam;
13class MSigmabar;
14class MCerPhotPix;
15class MCerPhotEvt;
16class MPedestalCam;
17class MIslands;
18
19class MIslandCalc : public MGTask
20{
21 private:
22 const MGeomCam *fCam; //!
23 MCerPhotEvt *fEvt; //!
24 MSigmabar *fSgb; //!
25 MPedestalCam *fPed; //!
26
27 MIslands *fIsl; //! output container to store result
28
29 Int_t PreProcess(MParList *plist);
30 Int_t Process();
31
32 public:
33 MIslandCalc(const char *name=NULL, const char *title=NULL);
34
35 ClassDef(MIslandCalc, 0) // task doing the image cleaning
36};
37
38#endif
Note: See TracBrowser for help on using the repository browser.