IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 9, 2008, 10:42:51 AM (18 years ago)
Author:
Paul Price
Message:

Suppress test output.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/imageops/psImageMap.c

    r19960 r20020  
    77 *  @author Eugene Magnier, IfA
    88 *
    9  *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2008-10-07 22:23:06 $
     9 *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2008-10-09 20:42:51 $
    1111 *
    1212 *  Copyright 2007 Institute for Astronomy, University of Hawaii
     
    237237   // at this point, for each map pixel, we have (f,x,y), or the pixel is masked.
    238238
    239     psFits *fits = NULL;
    240 
    241     fits = psFitsOpen ("imageMap.raw.fits", "w");
    242     psFitsWriteImage (fits, NULL, map->map, 0, NULL);
    243     psFitsClose (fits);
     239
     240#if 0
     241    {
     242        psFits *fits = psFitsOpen ("imageMap.raw.fits", "w");
     243        psFitsWriteImage (fits, NULL, map->map, 0, NULL);
     244        psFitsClose (fits);
     245    }
     246#endif
    244247
    245248    // did this analysis succeed?  (enough good or OK pixels?)
     
    259262    psFree (yCoord);
    260263
    261     fits = psFitsOpen ("imageMap.ref.fits", "w");
    262     psFitsWriteImage (fits, NULL, map->map, 0, NULL);
    263     psFitsClose (fits);
     264#if 0
     265    {
     266        psFits *fits = psFitsOpen ("imageMap.ref.fits", "w");
     267        psFitsWriteImage (fits, NULL, map->map, 0, NULL);
     268        psFitsClose (fits);
     269    }
     270#endif
    264271
    265272    psImagePixelInterpolatePoor (map->map, state, mask, 0xff);
    266273
    267     fits = psFitsOpen ("imageMap.fix.fits", "w");
    268     psFitsWriteImage (fits, NULL, map->map, 0, NULL);
    269     psFitsClose (fits);
     274#if 0
     275    {
     276        psFits *fits = psFitsOpen ("imageMap.fix.fits", "w");
     277        psFitsWriteImage (fits, NULL, map->map, 0, NULL);
     278        psFitsClose (fits);
     279    }
     280#endif
    270281
    271282    psFree (state);
Note: See TracChangeset for help on using the changeset viewer.