Ignore:
Timestamp:
10/15/02 17:02:46 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MHillasExt.cc

    r1524 r1540  
    111111// and the cerenkov photon event
    112112//
    113 Bool_t MHillasExt::Calc(const MGeomCam &geom, const MCerPhotEvt &evt)
    114 {
    115     if (!MHillas::Calc(geom, evt))
    116         return kFALSE;
     113Int_t MHillasExt::Calc(const MGeomCam &geom, const MCerPhotEvt &evt)
     114{
     115    const Int_t rc = MHillas::Calc(geom, evt);
     116    if (rc>0)
     117        return rc;
    117118
    118119    //
     
    237238    SetReadyToSave();
    238239
    239     return kTRUE;
     240    return 0;
    240241}
    241242
Note: See TracChangeset for help on using the changeset viewer.