Ignore:
Timestamp:
09/02/04 14:32:50 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/msignal
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/msignal/MArrivalTime.cc

    r4577 r4828  
    9191    fDataErr[i] = t;
    9292}
    93      
     93
     94void MArrivalTime::Print(Option_t *o) const
     95{
     96    *fLog << all << GetDescriptor() << ":" << endl;
     97    for (int i=0; i<fData.GetSize(); i++)
     98        *fLog << fData[i] << " ";
     99    *fLog << endl;
     100}
     101
    94102// --------------------------------------------------------------------------
    95103//
  • trunk/MagicSoft/Mars/msignal/MArrivalTime.h

    r4716 r4828  
    4343    Double_t operator[](int i) const { return fData[i]; }
    4444
     45    void Print(Option_t *o="") const;
     46
    4547    // Do not do such things! It is highly dangerous to use two very similar operators
    4648    // to do completely different things! People won't recognize it...
Note: See TracChangeset for help on using the changeset viewer.