Ignore:
Timestamp:
12/22/11 15:46:36 (13 years ago)
Author:
tbretz
Message:
added SetupReadingFits and InterpreteFits; added GetTime
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mreport/MReport.h

    r8955 r12735  
    55#include "MParContainer.h"
    66#endif
     7#ifndef MARS_MTime
    78#include "MTime.h"
     9#endif
     10
     11namespace std
     12{
     13    class fits;
     14}
    815class MTime;
    916class MParList;
     
    3037
    3138    virtual Bool_t SetupReading(MParList &plist);
     39    virtual Bool_t SetupReadingFits(std::fits &fits) { return kFALSE; }
    3240    virtual Int_t  InterpreteBody(TString &str, Int_t ver);
    3341
    3442    Int_t  Interprete(TString &str, const MTime &start, const MTime &stop, const Int_t ver);
     43    virtual Int_t  InterpreteFits(const std::fits &fits) { return kFALSE; }
    3544    Bool_t CheckIdentifier(TString &str) const
    3645    {
     
    4958    Double_t GetMjd() const { return fTime ? fTime->GetMjd() : -1; }
    5059
     60    MTime *GetTime() { return fTime; }
     61
    5162    ClassDef(MReport, 1) // Base class for control reports
    5263};
Note: See TracChangeset for help on using the changeset viewer.