Changeset 5033 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
09/15/04 16:32:28 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r5032 r5033  
    5454     - initialize default number of dump events (500)
    5555     - log status of task in PreProcess
     56
     57   * mimage/MHillasSrcCalc.cc:
     58     - fixed
     59     - THE USE OF THIS TASK IS DEPRICATED. PLEASE USE MHillasCalc INSTEAD!!!
    5660
    5761
  • trunk/MagicSoft/Mars/mimage/MHillasSrcCalc.cc

    r4710 r5033  
    3030// Task to calculate the source dependant part of the hillas parameters
    3131//
    32 // FIXME: Merge with MHillasCalc
     32// THE USE OF THIS TASK IS DEPRICATED. PLEASE USE MHillasCalc INSTEAD!!!
     33//
    3334//
    3435//  Input Containers:
     
    114115Int_t MHillasSrcCalc::Process()
    115116{
    116     if (!fHillasSrc->Calc(*fHillas))
     117    if (fHillasSrc->Calc(*fHillas)>0)
    117118    {
    118119        fErrors++;
     
    136137    *fLog << GetDescriptor() << " execution statistics:" << endl;
    137138    *fLog << dec << setfill(' ');
    138     *fLog << " " << fErrors << " (" << (int)(fErrors*100/GetNumExecutions()) << "%) Evts skipped due to: Dist==0" << endl;
     139    *fLog << " " << fErrors << " (" << (int)(fErrors*100/GetNumExecutions()) << "%) Evts skipped due to: Calc>0" << endl;
    139140    *fLog << endl;
    140141
Note: See TracChangeset for help on using the changeset viewer.