source: trunk/Mars/mimage/MNewImagePar2.h@ 18888

Last change on this file since 18888 was 6869, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 762 bytes
Line 
1#ifndef MARS_MNewImagePar2
2#define MARS_MNewImagePar2
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class MGeomCam;
9class MSignalCam;
10
11class MNewImagePar2 : public MParContainer
12{
13private:
14 Float_t fBorderLinePixel; //
15 Float_t fBorderLineCenter; //
16
17public:
18 MNewImagePar2(const char *name=NULL, const char *title=NULL);
19
20 void Reset();
21
22 Float_t GetBorderLinePixel() const { return fBorderLinePixel; }
23 Float_t GetBorderLineCenter() const { return fBorderLineCenter; }
24
25 void Print(Option_t *opt=NULL) const;
26 void Print(const MGeomCam &geom) const;
27
28 void Calc(const MGeomCam &geom, const MSignalCam &evt, Int_t island=-1);
29
30 ClassDef(MNewImagePar2, 1) // Container to hold new image parameters 2
31};
32
33#endif
Note: See TracBrowser for help on using the repository browser.