source: trunk/MagicSoft/Mars/mreport/MReportDrive.cc@ 2837

Last change on this file since 2837 was 2814, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 4.7 KB
Line 
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 descries 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
72ClassImp(MReportDrive);
73
74using namespace std;
75
76// --------------------------------------------------------------------------
77//
78// Default construtor. Initialize identifier to "DRIVE-REPORT"
79//
80MReportDrive::MReportDrive() : MReport("DRIVE-REPORT")
81{
82 fName = "MReportDrive";
83 fTitle = "Class for DRIVE-REPORT information";
84}
85
86// --------------------------------------------------------------------------
87//
88// Interprete the body of the DRIVE-REPORT string
89//
90Bool_t MReportDrive::InterpreteBody(TString &str)
91{
92 MAstro::String2Angle(str, fRa);
93 MAstro::String2Angle(str, fDec);
94 MAstro::String2Angle(str, fHa);
95
96 Int_t len;
97 Int_t n=sscanf(str.Data(), "%lf %n", &fMjd, &len);
98 if (n!=1)
99 return kFALSE;
100
101 str.Remove(0, len);
102
103 MAstro::String2Angle(str, fNominalZd);
104 MAstro::String2Angle(str, fNominalAz);
105 MAstro::String2Angle(str, fCurrentZd);
106 MAstro::String2Angle(str, fCurrentAz);
107
108 n=sscanf(str.Data(), "%lf %lf %n", &fErrorZd, &fErrorAz, &len);
109 if (n!=2)
110 return kFALSE;
111
112 str.Remove(0, len);
113
114 str = str.Strip(TString::kBoth);
115
116 return str.IsNull();
117}
118
119// --------------------------------------------------------------------------
120//
121// Returns the absolute deviation from the nominal position calculated
122// from the system error.
123//
124Double_t MReportDrive::GetAbsError() const
125{
126 const Double_t pzd = fNominalZd*TMath::DegToRad();
127 const Double_t azd = fErrorZd *TMath::DegToRad();
128 const Double_t aaz = fErrorAz *TMath::DegToRad();
129
130 const double el = TMath::Pi()/2-pzd;
131
132 const double dphi2 = aaz/2.;
133 const double cos2 = cos(dphi2)*cos(dphi2);
134 const double sin2 = sin(dphi2)*sin(dphi2);
135 const double d = cos(azd)*cos2 - cos(2*el)*sin2;
136
137 //
138 // Original:
139 // cos(Zd1)*cos(Zd2)+sin(Zd1)*sin(Zd2)*cos(dAz)
140 //
141 // Correct:
142 // const double d = cos(azd)*cos2 - cos(el1+el2)*sin2;
143 //
144 // Estimated:
145 // const double d = cos(azd)*cos2 - cos(2*el)*sin2;
146 //
147
148 return acos(d)*TMath::RadToDeg();
149}
Note: See TracBrowser for help on using the repository browser.