Ignore:
Timestamp:
05/24/06 19:00:45 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r7594 r7744  
    2626
    2727    TArrayI  fSkip;                //! Counter for execution statistics
     28    Double_t fLastMjd;             //! Time of last processed report
    2829
    2930    UInt_t  fNumMinStars;          // Minimum number of identified stars
     
    3233    Float_t fNsbMax;               // Maximum NSB to calc mean and rms
    3334    Float_t fMaxAbsDev;            // [arcmin] Maximum considered absolute deviation
     35    Float_t fMaxAge;               // [min] Maximum age of reports to be used without an update
    3436
    3537    Float_t fDx;                   // Starguider calibration dx
     
    3840    // MPointingDevCalc
    3941    Int_t ProcessStarguiderReport();
     42    void  Skip(Int_t i);
    4043
    4144    // MParContainer
     
    4952
    5053public:
    51     MPointingDevCalc() : fReport(0), fDeviation(0), fSkip(5), fNumMinStars(8),
    52         fNsbLevel(3), fNsbMin(30), fNsbMax(60), fMaxAbsDev(15), fDx(-7), fDy(16)
     54    MPointingDevCalc() : fReport(0), fDeviation(0), fSkip(6), fNumMinStars(8),
     55        fNsbLevel(3), fNsbMin(30), fNsbMax(60), fMaxAbsDev(15), fMaxAge(1), fDx(-7), fDy(16)
    5356    {
    5457        fName  = "MPointingDevCalc";
     
    6568    void SetDx(Float_t dx)         { fDx=dx; }
    6669    void SetDy(Float_t dy)         { fDy=dy; }
     70    void SetMaxAge(Float_t age)    { fMaxAge=age; }
    6771
    6872    ClassDef(MPointingDevCalc, 0) //Task calculating the pointing deviation
Note: See TracChangeset for help on using the changeset viewer.