Changeset 531 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
01/16/01 13:05:39 (24 years ago)
Author:
harald
Message:
There were some exit statement, that were not useful. So I replaced them
by the statement --> return kFALSE <--
Location:
trunk/MagicSoft/Mars/mdatacheck
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mdatacheck/MDumpEvtHeader.cc

    r466 r531  
    1313    {
    1414      cout << "MRawFileRead::PreProcess - WARNING: MRawEvtHeader not found... creating." << endl;
    15       exit(123) ;
     15      return kFALSE ;
    1616    }
    1717 
     
    2121    {
    2222      cout << "MRawFileRead::PreProcess - WARNING: MRawEvtData not found... creating." << endl;
    23       exit(123) ;
     23      return kFALSE ;
    2424    }
    2525
  • trunk/MagicSoft/Mars/mdatacheck/MFillAdcSpect.cc

    r466 r531  
    3030    {
    3131      cout << "MRawFileRead::PreProcess - WARNING: MRawEvtData not found... creating." << endl;
    32       exit(123) ;
     32      return kFALSE ;
    3333    }
    3434
  • trunk/MagicSoft/Mars/mdatacheck/MShowSpect.cc

    r466 r531  
    3535    {
    3636      cout << "ERROR: MShowSpect::PreProc(): " << fHistName << " not found!" << endl;
    37       exit(1);
     37      return kFALSE ;
    3838    }
    3939 
Note: See TracChangeset for help on using the changeset viewer.