IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 16, 2006, 5:29:08 PM (20 years ago)
Author:
Paul Price
Message:

Documenting pmHDUGenerate.[ch]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmHDUGenerate.c

    r9584 r9603  
    449449//////////////////////////////////////////////////////////////////////////////////////////////////////////////
    450450
    451 // Generate an HDU from a cell with pixels
    452 bool pmHDUGenerateForCell(pmCell *cell  // The cell
    453                          )
     451bool pmHDUGenerateForCell(pmCell *cell)
    454452{
    455453    PS_ASSERT_PTR_NON_NULL(cell, false);
     
    496494        return pmHDUGenerateForChip(cell->parent);
    497495    default:
    498         psAbort(__func__, "Shouldn't ever get here.\n");
     496        psAbort(__func__, "Shouldn't ever get here: check your camera format configuration.\n");
    499497    }
    500498    return false;
    501499}
    502500
    503 // Generate an HDU from a chip with pixels
    504 bool pmHDUGenerateForChip(pmChip *chip  // The chip
    505                          )
     501bool pmHDUGenerateForChip(pmChip *chip)
    506502{
    507503    PS_ASSERT_PTR_NON_NULL(chip, false);
     
    546542        return pmHDUGenerateForFPA(chip->parent);
    547543    default:
    548         psAbort(__func__, "Shouldn't ever get here.\n");
     544        psAbort(__func__, "Shouldn't ever get here: check your camera format configuration.\n");
    549545    }
    550546    return false;
     
    552548
    553549
    554 // Generate an HDU from an FPA with pixels
    555 bool pmHDUGenerateForFPA(pmFPA *fpa     // The fpa
    556                         )
     550bool pmHDUGenerateForFPA(pmFPA *fpa)
    557551{
    558552    PS_ASSERT_PTR_NON_NULL(fpa, false);
     
    590584        }
    591585    default:
    592         psAbort(__func__, "Shouldn't ever get here.\n");
     586        psAbort(__func__, "Shouldn't ever get here: check your camera format configuration.\n");
    593587    }
    594588    return false;
Note: See TracChangeset for help on using the changeset viewer.