Line | |
---|
1 | #ifndef MARS_MImageParDisp
|
---|
2 | #define MARS_MImageParDisp
|
---|
3 |
|
---|
4 | #ifndef MARS_MParContainer
|
---|
5 | #include "MParContainer.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MImageParDisp : public MParContainer
|
---|
9 | {
|
---|
10 | private:
|
---|
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 |
|
---|
16 | public:
|
---|
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.