Ignore:
Timestamp:
06/02/08 16:23:28 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mpointing/MPointingPos.cc

    r7887 r8915  
    5757const TString MPointingPos::gsDefName  = "MPointingPos";
    5858const TString MPointingPos::gsDefTitle = "Container storing the (corrected) telescope pointing position";
     59
     60Double_t MPointingPos::GetZdRad() const
     61{
     62    return fZd*TMath::DegToRad();
     63}
     64
     65Double_t MPointingPos::GetAzRad() const
     66{
     67    return fAz*TMath::DegToRad();
     68}
     69
     70Double_t MPointingPos::GetRaRad() const
     71{
     72    return fRa*TMath::DegToRad()*15;
     73}
     74
     75Double_t MPointingPos::GetDecRad() const
     76{
     77    return fDec*TMath::DegToRad();
     78}
    5979
    6080// --------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.