Changeset 16418 for trunk/FACT++
- Timestamp:
- 05/29/13 01:16:50 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fitsCompressor.cc
r16285 r16418 1476 1476 1477 1477 //Open input's fits file 1478 fact Fits inFile(fileNameIn);1478 factfits inFile(fileNameIn); 1479 1479 1480 1480 if (inFile.IsCompressedFITS()) … … 1504 1504 1505 1505 //Because the file to open MUST be given by the constructor, I must use a pointer instead 1506 fact Fits* drsFile = NULL;1506 factfits* drsFile = NULL; 1507 1507 //try to open the Drs file. If any. 1508 1508 if (drsFileName != "") … … 1510 1510 try 1511 1511 { 1512 drsFile = new fact Fits(drsFileName);1512 drsFile = new factfits(drsFileName); 1513 1513 } 1514 1514 catch (...) … … 1762 1762 1763 1763 //get a compressed reader 1764 fact Fits verifyFile(fileNameOut, tableName, false);1764 factfits verifyFile(fileNameOut, tableName, false); 1765 1765 1766 1766 //and the header of the compressed file
Note:
See TracChangeset
for help on using the changeset viewer.