IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 1, 2009, 11:43:05 AM (17 years ago)
Author:
eugene
Message:

merging Doxygen templates added by Bill G

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppMerge/src/ppMergeReadChunk.c

    r19014 r21244  
     1/** @file ppMergeReadChunk.c
     2 *
     3 *  @brief
     4 *
     5 *  @ingroup ppMerge
     6 *
     7 *  @author IfA
     8 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2009-02-01 21:43:05 $
     10 *  Copyright 2009 Institute for Astronomy, University of Hawaii
     11 */
     12
    113# include "ppMerge.h"
    214
    3 #define THREAD_WAIT 10000               // Microseconds to wait if thread is not available
     15#define THREAD_WAIT 10000               ///< Microseconds to wait if thread is not available
    416
    517ppMergeFileGroup *ppMergeReadChunk(bool *status, psArray *fileGroups, pmConfig *config, int numChunk)
     
    820
    921    bool mdok;
    10     bool haveMasks = psMetadataLookupBool(&mdok, config->arguments, "INPUTS.MASKS"); // Do we have masks?
    11     bool haveWeights = psMetadataLookupBool(&mdok, config->arguments, "INPUTS.WEIGHTS");// Do we have weights?
    12     int rows = psMetadataLookupS32(NULL, config->arguments, "ROWS"); // Number of rows to read per chunk
     22    bool haveMasks = psMetadataLookupBool(&mdok, config->arguments, "INPUTS.MASKS"); ///< Do we have masks?
     23    bool haveWeights = psMetadataLookupBool(&mdok, config->arguments, "INPUTS.WEIGHTS");///< Do we have weights?
     24    int rows = psMetadataLookupS32(NULL, config->arguments, "ROWS"); ///< Number of rows to read per chunk
    1325
    1426    // select an available fileGroup
     
    3648            psTrace("ppStack", 2, "Reading data for chunk %d into fileGroup %d....n", numChunk, j);
    3749            for (int i = 0; i < readouts->n; i++) {
    38                 pmReadout *inRO = readouts->data[i]; // Input readout
     50                pmReadout *inRO = readouts->data[i]; ///< Input readout
    3951
    4052                // override the recorded last scan
Note: See TracChangeset for help on using the changeset viewer.