- Timestamp:
- 09/03/16 14:06:44 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mpointing/MPointingPos.cc
r8915 r18561 41 41 ///////////////////////////////////////////////////////////////////////////// 42 42 #include "MPointingPos.h" 43 44 #include "fits.h" 43 45 44 46 #include "MLog.h" … … 144 146 *fLog << GetDescriptor() << ": " << GetString(o) << endl; 145 147 } 148 149 Bool_t MPointingPos::SetupFits(fits &fin) 150 { 151 if (!fin.SetRefAddress(Form("%s.fZd", fName.Data()), fZd)) return kFALSE; 152 if (!fin.SetRefAddress(Form("%s.fAz", fName.Data()), fAz)) return kFALSE; 153 if (!fin.SetRefAddress(Form("%s.fRa", fName.Data()), fRa)) return kFALSE; 154 if (!fin.SetRefAddress(Form("%s.fDec", fName.Data()), fDec)) return kFALSE; 155 if (!fin.SetRefAddress(Form("%s.fHa", fName.Data()), fHa)) return kFALSE; 156 157 return kTRUE; 158 }
Note:
See TracChangeset
for help on using the changeset viewer.