IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 15982


Ignore:
Timestamp:
Jan 2, 2008, 10:40:47 AM (18 years ago)
Author:
gusciora
Message:

Cosmetic changes only.

Location:
trunk/psModules/src/objects
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/objects/models/pmModel_PGAUSS.c

    r15834 r15982  
    316316bool PM_MODEL_FROM_PSF (pmModel *modelPSF, pmModel *modelFLT, const pmPSF *psf)
    317317{
    318 
    319318    psF32 *out = modelPSF->params->data.F32;
    320319    psF32 *in  = modelFLT->params->data.F32;
     
    416415bool PM_MODEL_FIT_STATUS (pmModel *model)
    417416{
    418 
    419417    psF32 dP;
    420418    bool  status;
  • trunk/psModules/src/objects/pmPSF_IO.c

    r15707 r15982  
    66 *  @author EAM, IfA
    77 *
    8  *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2007-11-28 01:01:14 $
     8 *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2008-01-02 20:37:43 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5454    PS_ASSERT_PTR_NON_NULL(file->fpa, false);
    5555    PS_ASSERT_PTR_NON_NULL(file->fpa->chips, false);
    56 
    5756    pmFPA *fpa = file->fpa;
    5857
     
    6160        return exists;
    6261    }
     62
    6363    if (view->chip >= fpa->chips->n) {
    6464        psError(PS_ERR_IO, true, "Requested chip == %d >= fpa->chips->n == %ld", view->chip, fpa->chips->n);
    6565        return false;
    6666    }
     67
    6768    pmChip *chip = fpa->chips->data[view->chip];
    6869    PS_ASSERT_PTR_NON_NULL(chip, false);
     
    7374        return exists;
    7475    }
     76
    7577    if (view->cell >= chip->cells->n) {
    7678        psError(PS_ERR_IO, true, "Requested cell == %d >= chip->cells->n == %ld", view->cell, chip->cells->n);
    7779        return false;
    7880    }
     81
    7982    psError(PS_ERR_IO, false, "PSF only valid at the chip level");
    8083    return false;
     
    181184// else
    182185//   - psf table (+header) : FITS Table
    183 bool pmPSFmodelWrite (psMetadata *analysis, const pmFPAview *view, pmFPAfile *file, const pmConfig *config)
     186bool pmPSFmodelWrite (psMetadata *analysis, const pmFPAview *view,
     187                      pmFPAfile *file, const pmConfig *config)
    184188{
    185189    PS_ASSERT_PTR_NON_NULL(view, false);
Note: See TracChangeset for help on using the changeset viewer.