1 | /* ======================================================================== *\
|
---|
2 | !
|
---|
3 | ! *
|
---|
4 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
---|
5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
---|
6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
---|
7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
---|
8 | ! *
|
---|
9 | ! * Permission to use, copy, modify and distribute this software and its
|
---|
10 | ! * documentation for any purpose is hereby granted without fee,
|
---|
11 | ! * provided that the above copyright notice appear in all copies and
|
---|
12 | ! * that both that copyright notice and this permission notice appear
|
---|
13 | ! * in supporting documentation. It is provided "as is" without express
|
---|
14 | ! * or implied warranty.
|
---|
15 | ! *
|
---|
16 | !
|
---|
17 | !
|
---|
18 | ! Author(s): Thomas Bretz, 11/2003 <mailto:tbretz@astro.uni-wuerzburg.de>
|
---|
19 | !
|
---|
20 | ! Copyright: MAGIC Software Development, 2000-2003
|
---|
21 | !
|
---|
22 | !
|
---|
23 | \* ======================================================================== */
|
---|
24 |
|
---|
25 | //////////////////////////////////////////////////////////////////////////////
|
---|
26 | //
|
---|
27 | // MReportDrive
|
---|
28 | //
|
---|
29 | // This is the class interpreting and storing the DRIVE-REPORT information.
|
---|
30 | //
|
---|
31 | // This is NOT the place to get the pointing position from. The class
|
---|
32 | // definition might change. But it is the place to calculate the
|
---|
33 | // correct pointing position from.
|
---|
34 | //
|
---|
35 | //
|
---|
36 | // Double_t fMjd; // Modified Julian Date send by the drive system
|
---|
37 | // This is the MJD as it was calculated by the drive system when the report
|
---|
38 | // was send.
|
---|
39 | //
|
---|
40 | // Double_t fRa; // [h] Right ascension
|
---|
41 | // Double_t fDec; // [deg] Declination
|
---|
42 | // Double_t fHa; // [h] Hour angle
|
---|
43 | // Currently this describes the nominal source position
|
---|
44 | //
|
---|
45 | // Double_t fNominalZd; // [deg] Nominal zenith distance
|
---|
46 | // Double_t fNominalAz; // [deg] Nominal azimuth
|
---|
47 | // The nominal local position like it was calculated in the last
|
---|
48 | // control loop for time at which the last shaftencoder value has changed
|
---|
49 | //
|
---|
50 | // Double_t fCurrentZd; // [deg] current zenith distance
|
---|
51 | // Double_t fCurrentAz; // [deg] current azimuth
|
---|
52 | // The current local position like it was calculated in the last
|
---|
53 | // control loop from interpolated shaftencoder values for time at which
|
---|
54 | // the last shaftencoder value has changed
|
---|
55 | //
|
---|
56 | // Double_t fErrorZd; // [?] system error in the zenith angle axis
|
---|
57 | // Double_t fErrorAz; // [?] sistem error in the azimuth angle axis
|
---|
58 | // The system error on both axis derived from the two values above. Be
|
---|
59 | // carefull, eg near the zenith we a huge deviation in azimuth
|
---|
60 | // while having a small deviation in zenith angle might be meaingless.
|
---|
61 | // Please use GetAbsError to get the absolute distance between the
|
---|
62 | // twopositions.
|
---|
63 | //
|
---|
64 | //
|
---|
65 | //////////////////////////////////////////////////////////////////////////////
|
---|
66 | #include "MReportDrive.h"
|
---|
67 |
|
---|
68 | #include "MLogManip.h"
|
---|
69 |
|
---|
70 | #include "MAstro.h"
|
---|
71 |
|
---|
72 | ClassImp(MReportDrive);
|
---|
73 |
|
---|
74 | using namespace std;
|
---|
75 |
|
---|
76 | // --------------------------------------------------------------------------
|
---|
77 | //
|
---|
78 | // Default construtor. Initialize identifier to "DRIVE-REPORT"
|
---|
79 | //
|
---|
80 | MReportDrive::MReportDrive() : MReport("DRIVE-REPORT"),
|
---|
81 | fMjd(0), fRa(0), fDec(0), fHa(0), fNominalZd(0), fNominalAz(0),
|
---|
82 | fCurrentZd(0), fCurrentAz(0), fErrorZd(0), fErrorAz(0)
|
---|
83 | {
|
---|
84 | fName = "MReportDrive";
|
---|
85 | fTitle = "Class for DRIVE-REPORT information (raw telescope position)";
|
---|
86 | }
|
---|
87 |
|
---|
88 | // --------------------------------------------------------------------------
|
---|
89 | //
|
---|
90 | // Interprete the body of the DRIVE-REPORT string
|
---|
91 | //
|
---|
92 | Int_t MReportDrive::InterpreteBody(TString &str, Int_t ver)
|
---|
93 | {
|
---|
94 | MAstro::String2Angle(str, fRa);
|
---|
95 | MAstro::String2Angle(str, fDec);
|
---|
96 | MAstro::String2Angle(str, fHa);
|
---|
97 |
|
---|
98 | Int_t len;
|
---|
99 | Int_t n=sscanf(str.Data(), "%lf %n", &fMjd, &len);
|
---|
100 | if (n!=1)
|
---|
101 | {
|
---|
102 | *fLog << warn << "WARNING - Not enough arguments." << endl;
|
---|
103 | return kCONTINUE;
|
---|
104 | }
|
---|
105 |
|
---|
106 | str.Remove(0, len);
|
---|
107 |
|
---|
108 | MAstro::String2Angle(str, fNominalZd);
|
---|
109 | MAstro::String2Angle(str, fNominalAz);
|
---|
110 | MAstro::String2Angle(str, fCurrentZd);
|
---|
111 | MAstro::String2Angle(str, fCurrentAz);
|
---|
112 |
|
---|
113 | n=sscanf(str.Data(), "%lf %lf %n", &fErrorZd, &fErrorAz, &len);
|
---|
114 | if (n!=2)
|
---|
115 | {
|
---|
116 | *fLog << warn << "WARNING - Not enough arguments." << endl;
|
---|
117 | return kCONTINUE;
|
---|
118 | }
|
---|
119 |
|
---|
120 | str.Remove(0, len);
|
---|
121 | str = str.Strip(TString::kBoth);
|
---|
122 |
|
---|
123 | if (ver>=200802200)
|
---|
124 | {
|
---|
125 | Int_t dummy; // Cosy armed or not
|
---|
126 | n=sscanf(str.Data(), "%d %n", &dummy, &len);
|
---|
127 | if (n!=1)
|
---|
128 | {
|
---|
129 | *fLog << warn << "WARNING - Not enough arguments." << endl;
|
---|
130 | return kCONTINUE;
|
---|
131 | }
|
---|
132 |
|
---|
133 | str.Remove(0, len);
|
---|
134 | str = str.Strip(TString::kBoth);
|
---|
135 | }
|
---|
136 |
|
---|
137 | if (ver>=200905170)
|
---|
138 | {
|
---|
139 | Int_t dummy; // Starguider switched on or not
|
---|
140 | n=sscanf(str.Data(), "%d %n", &dummy, &len);
|
---|
141 | if (n!=1)
|
---|
142 | {
|
---|
143 | *fLog << warn << "WARNING - Not enough arguments." << endl;
|
---|
144 | return kCONTINUE;
|
---|
145 | }
|
---|
146 |
|
---|
147 | str.Remove(0, len);
|
---|
148 | str = str.Strip(TString::kBoth);
|
---|
149 | }
|
---|
150 |
|
---|
151 | return str.IsNull() ? kTRUE : kCONTINUE;
|
---|
152 | }
|
---|
153 |
|
---|
154 | // --------------------------------------------------------------------------
|
---|
155 | //
|
---|
156 | // GetAbsError [deg]
|
---|
157 | //
|
---|
158 | // Returns the absolute deviation from the nominal position calculated
|
---|
159 | // from the system error.
|
---|
160 | //
|
---|
161 | //
|
---|
162 | Double_t MReportDrive::GetAbsError() const
|
---|
163 | {
|
---|
164 | return MAstro::GetDevAbs(fNominalZd, fErrorZd, fErrorAz);
|
---|
165 | /*
|
---|
166 | // For the algorithm see also MReportStarguider
|
---|
167 | const Double_t pzd = fNominalZd*TMath::DegToRad();
|
---|
168 | const Double_t azd = fErrorZd *TMath::DegToRad();
|
---|
169 | const Double_t aaz = fErrorAz *TMath::DegToRad();
|
---|
170 |
|
---|
171 | const double el = TMath::Pi()/2-pzd;
|
---|
172 |
|
---|
173 | const double dphi2 = aaz/2.;
|
---|
174 | const double cos2 = cos(dphi2)*cos(dphi2);
|
---|
175 | const double sin2 = sin(dphi2)*sin(dphi2);
|
---|
176 | const double d = cos(azd)*cos2 - cos(2*el)*sin2;
|
---|
177 |
|
---|
178 | //
|
---|
179 | // Original:
|
---|
180 | // cos(Zd1)*cos(Zd2)+sin(Zd1)*sin(Zd2)*cos(dAz)
|
---|
181 | //
|
---|
182 | // Correct:
|
---|
183 | // const double d = cos(azd)*cos2 - cos(el1+el2)*sin2;
|
---|
184 | //
|
---|
185 | // Estimated:
|
---|
186 | // const double d = cos(azd)*cos2 - cos(2*el)*sin2;
|
---|
187 | //
|
---|
188 |
|
---|
189 | return acos(d)*TMath::RadToDeg();*/
|
---|
190 | }
|
---|
191 |
|
---|
192 | void MReportDrive::Print(Option_t *o) const
|
---|
193 | {
|
---|
194 | *fLog << GetDescriptor() << ": Mjd=" << fMjd << " Ra=" << fRa << " Dec=" << fDec;
|
---|
195 | *fLog << " dZd=" << fErrorZd << " dAz=" << fErrorAz << " D=" << GetAbsError() << endl;
|
---|
196 | }
|
---|