Changeset 4692 for trunk/MagicSoft/Mars/mtemp/mucm/classes
- Timestamp:
- 08/19/04 20:15:12 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mtemp/mucm/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mtemp/mucm/classes/MExtrapolatePointingPos.cc
r4691 r4692 207 207 208 208 // Init 209 fError = kFALSE; 209 210 fSplineZd = NULL; 210 211 fSplineAz = NULL; … … 283 284 << " outside range of drive reports (" << fFirstDriveTime 284 285 << ", " << fLastDriveTime << ")" << endl; 286 fError = kTRUE; 285 287 return kFALSE; 286 288 } … … 307 309 308 310 311 // ---------------------------------------------------------------------------- 312 // 313 // 314 Int_t MExtrapolatePointingPos::PostProcess() 315 { 316 return fError ? kFALSE : kTRUE; 317 } -
trunk/MagicSoft/Mars/mtemp/mucm/classes/MExtrapolatePointingPos.h
r4691 r4692 4 4 #ifndef MARS_MTask 5 5 #include "MTask.h" 6 #endif7 8 #ifndef ROOT_TArrayF9 #include <TArrayF.h>10 6 #endif 11 7 … … 46 42 TSpline3* fSplineDec; // Dec vs. time 47 43 44 Bool_t fError; // Flag indicating that error ocurred in Proccess 48 45 49 46 Int_t PreProcess(MParList *pList); 50 47 Int_t Process(); 48 Int_t PostProcess(); 51 49 Bool_t ReadDriveReport(const TString filename); 52 50
Note:
See TracChangeset
for help on using the changeset viewer.