Changeset 3671 in Sophya for trunk/AddOn/TAcq/racquproc.cc


Ignore:
Timestamp:
Nov 13, 2009, 11:54:04 AM (16 years ago)
Author:
ansari
Message:
  • Nettoyage complet des programmes d'acquisition
  • Ajout methode BRPaquet::CopyFrom() pour reduction de paquet
  • Introduction des classes BRParList , BRConfList , BRAcqConfig
  • Introduction du nouveau programme acquisition mfacq.cc (MultiFibresAcq)

Reza, 13/11/2009

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/AddOn/TAcq/racquproc.cc

    r3635 r3671  
    123123    }
    124124  }
    125   catch (PException& exc) {
    126     cout << " DataProc::run()/catched PException " << exc.Msg() << endl;
     125  catch (std::exception& exc) {
     126    cout << " DataProc::run()/catched std::exception " << exc.what() << endl;
    127127    setRC(3);   
    128128    return;
     
    242242    }
    243243  }
    244   catch (PException& exc) {
    245     cout << " DataProc2C::run()/catched PException " << exc.Msg() << endl;
     244  catch (std::exception& exc) {
     245    cout << " DataProc::run()/catched std::exception " << exc.what() << endl;
    246246    setRC(3);   
    247247    return;
     
    360360    }
    361361  }
    362   catch (PException& exc) {
    363     cout << " DataProcFFT2C::run()/catched PException " << exc.Msg() << endl;
     362  catch (std::exception& exc) {
     363    cout << " DataProc::run()/catched std::exception " << exc.what() << endl;
    364364    setRC(3);   
    365365    return;
Note: See TracChangeset for help on using the changeset viewer.