Ignore:
Timestamp:
Jan 2, 2006, 2:47:44 PM (20 years ago)
Author:
ansari
Message:

1/ Ajout methode CheckReadability() , retour int pour CheckHandling() ds l'interface FitsHandler et propagation vers handler TArray et DataTable
2/ Correction dans FitsManager et ajout initialiseur de module FitsIOServer (fiosinit.h .cc)
3/ FitsSwapper complete - corrige - full template (suppression de fitsswapper.cc)
4/ MAJ Makefile et objlist.list suite ajout fiosinit.cc et swfitsdtable

Reza , 2 Jan 2006

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaExt/FitsIOServer/fitshdtable.cc

    r2846 r2864  
    1212
    1313// #include "fitshdtable.h"
     14
     15DECL_TEMP_SPEC  /* equivalent a template <> , pour SGI-CC en particulier */
     16int FitsHandler<BaseDataTable>::CheckReadability(FitsInOutFile& is)
     17{
     18  if (is.CurrentHDUType() == IMAGE_HDU ) return 0;
     19  string key = "SOPCLSNM";
     20  if (is.KeyValue(key) == "SOPHYA::DataTable")  return 2;
     21  else return 1;
     22}
    1423
    1524DECL_TEMP_SPEC  /* equivalent a template <> , pour SGI-CC en particulier */
Note: See TracChangeset for help on using the changeset viewer.