| 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): Robert Wagner 10/2002 <mailto:magicsoft@rwagner.de>
|
|---|
| 19 | ! Author(s): Thomas Bretz 2/2003 <mailto:tbretz@astro.uni-wuerzburg.de>
|
|---|
| 20 | !
|
|---|
| 21 | ! Copyright: MAGIC Software Development, 2002-2003
|
|---|
| 22 | !
|
|---|
| 23 | !
|
|---|
| 24 | \* ======================================================================== */
|
|---|
| 25 |
|
|---|
| 26 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 27 | // //
|
|---|
| 28 | // MObservatory //
|
|---|
| 29 | // //
|
|---|
| 30 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 31 | #include "MObservatory.h"
|
|---|
| 32 |
|
|---|
| 33 | #include "MLog.h"
|
|---|
| 34 | #include "MLogManip.h"
|
|---|
| 35 |
|
|---|
| 36 | ClassImp(MObservatory);
|
|---|
| 37 |
|
|---|
| 38 | void MObservatory::Init(const char *name, const char *title)
|
|---|
| 39 | {
|
|---|
| 40 | fName = name ? name : "MObservatory";
|
|---|
| 41 | fTitle = title ? title : "Storage container for coordinates of an observatory";
|
|---|
| 42 | }
|
|---|
| 43 |
|
|---|
| 44 | MObservatory::MObservatory(const char *name, const char *title)
|
|---|
| 45 | {
|
|---|
| 46 | Init(name, title);
|
|---|
| 47 |
|
|---|
| 48 | SetLocation(kMagic1);
|
|---|
| 49 | }
|
|---|
| 50 |
|
|---|
| 51 | MObservatory::MObservatory(LocationName_t key, const char *name=NULL, const char *title=NULL)
|
|---|
| 52 | {
|
|---|
| 53 | Init(name, title);
|
|---|
| 54 |
|
|---|
| 55 | SetLocation(key);
|
|---|
| 56 | }
|
|---|
| 57 |
|
|---|
| 58 | void MObservatory::SetLocation(LocationName_t name)
|
|---|
| 59 | {
|
|---|
| 60 | switch (name)
|
|---|
| 61 | {
|
|---|
| 62 | case kMagic1:
|
|---|
| 63 | // Values taken from the GPS Receiver positined in
|
|---|
| 64 | // the CT1 control room
|
|---|
| 65 | fLatitude = Dms2Rad( 28, 45, 42.564);
|
|---|
| 66 | fLongitude = Dms2Rad(-17, 53, 27.426);
|
|---|
| 67 | fHeight = 2198.7; // m
|
|---|
| 68 | fObservatoryName = "Observatorio del Roque de los Muchachos (Magic1)";
|
|---|
| 69 | return;
|
|---|
| 70 |
|
|---|
| 71 | case kWuerzburgCity:
|
|---|
| 72 | fLatitude = Dms2Rad(51, 38, 48.0);
|
|---|
| 73 | fLongitude = Dms2Rad( 9, 56, 36.0);
|
|---|
| 74 | fHeight = 300;
|
|---|
| 75 | fObservatoryName = "Wuerzburg City";
|
|---|
| 76 | return;
|
|---|
| 77 |
|
|---|
| 78 | }
|
|---|
| 79 | }
|
|---|
| 80 |
|
|---|
| 81 | void MObservatory::Print(Option_t *) const
|
|---|
| 82 | {
|
|---|
| 83 | *fLog << all;
|
|---|
| 84 | *fLog << fObservatoryName << endl;
|
|---|
| 85 | *fLog << "Latitude " << (fLatitude > 0 ? (fLatitude*kRad2Deg) : -(fLatitude*kRad2Deg)) << " deg " << (fLatitude > 0 ? "W" : "E") << endl;
|
|---|
| 86 | *fLog << "Longitude " << (fLongitude > 0 ? (fLongitude*kRad2Deg) : -(fLongitude*kRad2Deg)) <<" deg " << (fLongitude < 0 ? "N" : "S") << endl;
|
|---|
| 87 | *fLog << "Height " << fHeight << "m" << endl;
|
|---|
| 88 | }
|
|---|
| 89 |
|
|---|