source: trunk/MagicSoft/Mars/mtemp/mifae/library/MImageParDisp.h@ 6977

Last change on this file since 6977 was 5669, checked in by domingo, 20 years ago
*** empty log message ***
File size: 719 bytes
Line 
1#ifndef MARS_MImageParDisp
2#define MARS_MImageParDisp
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class MImageParDisp : public MParContainer
9{
10private:
11
12 Float_t fDisp; // [deg] distance between the image center
13 // and the estimated source position,
14 // along the major axis of the image
15
16public:
17
18 MImageParDisp(const char *name=NULL, const char *title=NULL);
19
20 void Reset();
21
22 void SetDisp(Float_t disp) { fDisp = disp; }
23 Float_t GetDisp() const { return fDisp; }
24
25 void Print(Option_t *opt=NULL) const;
26
27 ClassDef(MImageParDisp, 1) // Container to hold estimated distance to source position (Disp)
28};
29
30#endif
Note: See TracBrowser for help on using the repository browser.