Changeset 4817 for trunk/MagicSoft/Mars/mpointing
- Timestamp:
- 08/31/04 10:21:26 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mpointing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mpointing/MPointingPos.h
r4731 r4817 4 4 #ifndef MARS_MParContainer 5 5 #include "MParContainer.h" 6 #endif 7 8 // FIXME: Should not be here... 9 #ifndef MARS_MPointing 10 #include "MPointing.h" 6 11 #endif 7 12 … … 32 37 Double_t GetAz() const { return fAz; } 33 38 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 34 44 Double_t GetRa() const { return fRa; } 35 45 Double_t GetHa() const { return fHa; } -
trunk/MagicSoft/Mars/mpointing/MPointingPosCalc.cc
r3544 r4817 134 134 case MRawRunHeader::kRTData: 135 135 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()*/); 137 137 return kTRUE; 138 138
Note:
See TracChangeset
for help on using the changeset viewer.