Ignore:
Timestamp:
08/19/04 20:15:12 (20 years ago)
Author:
marcos
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mtemp/mucm/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mtemp/mucm/classes/MExtrapolatePointingPos.cc

    r4691 r4692  
    207207
    208208    // Init
     209    fError = kFALSE;
    209210    fSplineZd  = NULL;
    210211    fSplineAz  = NULL;
     
    283284              << " outside range of drive reports  (" << fFirstDriveTime
    284285              << ", " << fLastDriveTime << ")" << endl;
     286        fError = kTRUE;
    285287        return kFALSE;
    286288    }
     
    307309
    308310
     311// ----------------------------------------------------------------------------
     312//
     313//
     314Int_t MExtrapolatePointingPos::PostProcess()
     315{
     316    return fError ? kFALSE : kTRUE;
     317}
  • trunk/MagicSoft/Mars/mtemp/mucm/classes/MExtrapolatePointingPos.h

    r4691 r4692  
    44#ifndef MARS_MTask
    55#include "MTask.h"
    6 #endif
    7 
    8 #ifndef ROOT_TArrayF
    9 #include <TArrayF.h>
    106#endif
    117
     
    4642    TSpline3* fSplineDec; // Dec vs. time
    4743
     44    Bool_t fError;        // Flag indicating that error ocurred in Proccess
    4845   
    4946    Int_t PreProcess(MParList *pList);
    5047    Int_t Process();
     48    Int_t PostProcess();
    5149    Bool_t ReadDriveReport(const TString filename);   
    5250
Note: See TracChangeset for help on using the changeset viewer.