Changeset 16418 for trunk/FACT++/src


Ignore:
Timestamp:
05/29/13 01:16:50 (11 years ago)
Author:
lyard
Message:
Fixed bugs from improvements
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/fitsCompressor.cc

    r16285 r16418  
    14761476
    14771477    //Open input's fits file
    1478     factFits inFile(fileNameIn);
     1478    factfits inFile(fileNameIn);
    14791479
    14801480    if (inFile.IsCompressedFITS())
     
    15041504
    15051505    //Because the file to open MUST be given by the constructor, I must use a pointer instead
    1506     factFits* drsFile = NULL;
     1506    factfits* drsFile = NULL;
    15071507    //try to open the Drs file. If any.
    15081508    if (drsFileName != "")
     
    15101510        try
    15111511        {
    1512             drsFile = new factFits(drsFileName);
     1512            drsFile = new factfits(drsFileName);
    15131513        }
    15141514        catch (...)
     
    17621762
    17631763    //get a compressed reader
    1764     factFits verifyFile(fileNameOut, tableName, false);
     1764    factfits verifyFile(fileNameOut, tableName, false);
    17651765
    17661766    //and the header of the compressed file
Note: See TracChangeset for help on using the changeset viewer.