source: trunk/MagicSoft/Mars/mbadpixels/MBadPixelsMerge.h@ 4189

Last change on this file since 4189 was 3068, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 583 bytes
Line 
1#ifndef MARS_MBadPixelsMerge
2#define MARS_MBadPixelsMerge
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MBadPixelsCam;
9
10class MBadPixelsMerge : public MTask
11{
12private:
13 static const TString fgDefName; //!
14 static const TString fgDefTitle; //!
15
16 MBadPixelsCam *fDest; //!
17 MBadPixelsCam *fSource; //->
18
19 Bool_t ReInit(MParList *pList);
20
21public:
22 MBadPixelsMerge(MBadPixelsCam *bad, const char *name=NULL, const char *title=NULL);
23 ~MBadPixelsMerge();
24
25 ClassDef(MBadPixelsMerge, 0) //Merge extra- and intra-loop pixels
26};
27
28#endif
29
Note: See TracBrowser for help on using the repository browser.