Changeset 1120 in Sophya for trunk/SophyaProg/PMixer/tgsky.cc


Ignore:
Timestamp:
Jul 31, 2000, 3:47:02 PM (25 years ago)
Author:
ansari
Message:

Adaptation de PMixer aux changements suivants :

  • Remplacement de l'ancienne classe Image<T> par une nouvelle, heritant

de TMatrix<T>

  • Remplacement des FitsIoServer par FITS_xxx<T>

Reza 31/7/2000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaProg/PMixer/tgsky.cc

    r949 r1120  
    108108
    109109
    110  
    111   FitsIoServer fios;
    112   fios.save(sph, arg[4]);
     110  {
     111  FITS_SphereHEALPix<r_4> fios(&sph);
     112  fios.Write(arg[4]);
    113113  cout << "SphereHEALPix<float> written to FITS file " << (string)(arg[4]) << endl;
    114114  PrtTim("End of WriteFITS ");
    115 
    116115  }
    117   catch (PThrowable exc) {
    118     cerr << " tgsky: Catched Exception - Msg= " << exc.Msg() << endl;
     116  }
     117  catch (PThrowable & exc) {
     118    cerr << " tgsky: Catched Exception - Msg= " << exc.Msg()
     119         << " Type=" << (string)typeid(exc).name() << endl;
    119120  }
    120121  catch (...) {
Note: See TracChangeset for help on using the changeset viewer.