| 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-2004
|
|---|
| 21 | !
|
|---|
| 22 | !
|
|---|
| 23 | \* ======================================================================== */
|
|---|
| 24 |
|
|---|
| 25 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 26 | //
|
|---|
| 27 | // MPointingPos
|
|---|
| 28 | //
|
|---|
| 29 | // In this container we store the corrected pointing position of the
|
|---|
| 30 | // telscope. The pointing coordinates are read into MReportDrive together
|
|---|
| 31 | // with its time.
|
|---|
| 32 | //
|
|---|
| 33 | // MPointingPosCalc afterwards calculates corrections and checks for the
|
|---|
| 34 | // cosistency of the coordinates. The result (the real coordinates)
|
|---|
| 35 | // are stored in this container. No further correction should be necessary
|
|---|
| 36 | // using MPointingPos.
|
|---|
| 37 | //
|
|---|
| 38 | // If you need the rotation angle of the starfield in the camera you can
|
|---|
| 39 | // get it from here.
|
|---|
| 40 | //
|
|---|
| 41 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 42 | #include "MPointingPos.h"
|
|---|
| 43 |
|
|---|
| 44 | #include "MTime.h"
|
|---|
| 45 | #include "MObservatory.h"
|
|---|
| 46 | #include "MPointingDev.h"
|
|---|
| 47 | #include "MAstroSky2Local.h"
|
|---|
| 48 |
|
|---|
| 49 | ClassImp(MPointingPos);
|
|---|
| 50 |
|
|---|
| 51 | using namespace std;
|
|---|
| 52 |
|
|---|
| 53 | // --------------------------------------------------------------------------
|
|---|
| 54 | //
|
|---|
| 55 | // Get the corresponding rotation angle of the sky coordinate system
|
|---|
| 56 | // seen with an Alt/Az telescope calculated from the stored local
|
|---|
| 57 | // (Zd/Az) coordinates.
|
|---|
| 58 | //
|
|---|
| 59 | // For more information see MAstro::RotationAngle
|
|---|
| 60 | //
|
|---|
| 61 | Double_t MPointingPos::RotationAngle(const MObservatory &o) const
|
|---|
| 62 | {
|
|---|
| 63 | return o.RotationAngle(fZd*TMath::DegToRad(), fAz*TMath::DegToRad());
|
|---|
| 64 | }
|
|---|
| 65 |
|
|---|
| 66 | // --------------------------------------------------------------------------
|
|---|
| 67 | //
|
|---|
| 68 | // Get the corresponding rotation angle of the sky coordinate system
|
|---|
| 69 | // seen with an Alt/Az telescope calculated from the stored sky
|
|---|
| 70 | // (Ra/Dec) coordinates.
|
|---|
| 71 | //
|
|---|
| 72 | // For more information see MAstro::RotationAngle
|
|---|
| 73 | //
|
|---|
| 74 | Double_t MPointingPos::RotationAngle(const MObservatory &o, const MTime &t, const MPointingDev *dev) const
|
|---|
| 75 | {
|
|---|
| 76 | return dev ?
|
|---|
| 77 | MAstroSky2Local(t, o).RotationAngle(GetRaRad(), GetDecRad(), dev->GetDevZdRad(), dev->GetDevAzRad()):
|
|---|
| 78 | MAstroSky2Local(t, o).RotationAngle(GetRaRad(), GetDecRad());
|
|---|
| 79 | }
|
|---|