Changeset 3746 in Sophya for trunk/Cosmo/SimLSS/cmvobserv3d.cc


Ignore:
Timestamp:
Feb 18, 2010, 10:45:29 AM (16 years ago)
Author:
cmv
Message:

correction pour petits cubes (demande assez de pys pour zref_), cmv 18/02/2010

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Cosmo/SimLSS/cmvobserv3d.cc

    r3615 r3746  
    245245 }
    246246
     247 //----TRY-CATCH-TRY-CATCH-TRY-CATCH-TRY-CATCH-TRY-CATCH-TRY-CATCH
     248 try {
     249 //----TRY-CATCH-TRY-CATCH-TRY-CATCH-TRY-CATCH-TRY-CATCH-TRY-CATCH
     250
    247251 double lschmin=log10(schmin), lschmax=log10(schmax);
    248252 if(schnpt<=0) {  // alors c'est un nombre de points par decade
     
    790794 PrtTim(">>>> End Of Job");
    791795
     796 //----TRY-CATCH-TRY-CATCH-TRY-CATCH-TRY-CATCH-TRY-CATCH-TRY-CATCH
     797 } catch (PException& exc) {
     798   cerr<<"cmvobserv3d.cc catched PException"<<exc.Msg()<<endl;
     799   return 77;
     800 } catch (std::exception& sex) {
     801   cerr << "cmvobserv3d.cc std::exception :"
     802        << (string)typeid(sex).name() << "\n msg= "
     803        << sex.what() << endl;
     804   return 78;
     805 } catch (...) {
     806   cerr << "cmvobserv3d.cc catched unknown (...) exception  " << endl;
     807   return 79;
     808 }
     809 //----TRY-CATCH-TRY-CATCH-TRY-CATCH-TRY-CATCH-TRY-CATCH-TRY-CATCH
     810
    792811 return 0;
    793812}
Note: See TracChangeset for help on using the changeset viewer.