Ignore:
Timestamp:
08/31/04 10:21:26 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mpointing
Files:
2 edited

Legend:

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

    r4731 r4817  
    44#ifndef MARS_MParContainer
    55#include "MParContainer.h"
     6#endif
     7
     8// FIXME: Should not be here...
     9#ifndef MARS_MPointing
     10#include "MPointing.h"
    611#endif
    712
     
    3237    Double_t GetAz() const  { return fAz; }
    3338
     39    Double_t GetZdRad() const  { return fZd*TMath::DegToRad(); }
     40    Double_t GetAzRad() const  { return fAz*TMath::DegToRad(); }
     41
     42    ZdAz GetZdAz() const { return ZdAz(fZd, fAz); }
     43
    3444    Double_t GetRa() const  { return fRa; }
    3545    Double_t GetHa() const  { return fHa; }
  • trunk/MagicSoft/Mars/mpointing/MPointingPosCalc.cc

    r3544 r4817  
    134134    case MRawRunHeader::kRTData:
    135135        fPosition->SetLocalPosition(fReport->GetNominalZd(), fReport->GetNominalAz());
    136         fPosition->SetSkyPosition(fReport->GetRa()*TMath::DegToRad()/15, fReport->GetDec()*TMath::DegToRad());
     136        fPosition->SetSkyPosition(fReport->GetRa()/**TMath::DegToRad()/15*/, fReport->GetDec()/**TMath::DegToRad()*/);
    137137        return kTRUE;
    138138
Note: See TracChangeset for help on using the changeset viewer.