IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 14, 2008, 4:26:09 PM (18 years ago)
Author:
Paul Price
Message:

Gene needs the concepts copied over in pmFPAfileDefineChipMosaic, so to avoid the error due to differing number of cells, I've made new functions that provide optional recursion.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/concepts/pmConcepts.h

    r12696 r16481  
    44 * @author Paul Price, IfA
    55 *
    6  * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
    7  * @date $Date: 2007-03-30 21:12:56 $
     6 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
     7 * @date $Date: 2008-02-15 02:26:09 $
    88 * Copyright 2005-2006 Institute for Astronomy, University of Hawaii
    99 */
     
    203203                       const pmFPA *source    ///< The source FPA
    204204                      );
     205
     206/// Copy the concepts within an FPA to another FPA; optionally recurse to lower levels
     207bool pmConceptsCopyFPA(pmFPA *target,   ///< Target FPA
     208                       const pmFPA *source, ///< Source FPA
     209                       bool chips,      ///< Recurse to chips level?
     210                       bool cells       ///< Recurse to cells level?
     211    );
     212
     213/// Copy the concepts within a chip to another chip; optionally recurse to lower level
     214bool pmConceptsCopyChip(pmChip *target, ///< Target chip
     215                        const pmChip *source, ///< Source chip
     216                        bool cells      ///< Recurse to cells level?
     217    );
     218
     219/// Copy the concepts within a cell to another cell
     220bool pmConceptsCopyCell(pmCell *target, ///< Target cell
     221                        const pmCell *source ///< Source cell
     222    );
     223
     224
    205225/// @}
    206226#endif
Note: See TracChangeset for help on using the changeset viewer.