IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 6, 2009, 9:45:30 AM (17 years ago)
Author:
giebink
Message:

inline Doxygen comments deleted

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppArith/src/ppArithLoop.c

    r21244 r21378  
    66 *
    77 *  @author IfA
    8  *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2009-02-01 21:40:52 $
     8 *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2009-02-06 19:45:30 $
    1010 *  Copyright 2009 Institute for Astronomy, University of Hawaii
    1111 */
     
    2828    PS_ASSERT_PTR_NON_NULL(config, false);
    2929
    30     bool mdok;                          ///< Status of MD lookup
    31     const char *statsName = psMetadataLookupStr(&mdok, config->arguments, "STATS"); ///< Filename for statistics
    32     psMetadata *stats = NULL;           ///< Container for statistics
    33     FILE *statsFile = NULL;             ///< File stream for statistics
     30    bool mdok;                          // Status of MD lookup
     31    const char *statsName = psMetadataLookupStr(&mdok, config->arguments, "STATS"); // Filename for statistics
     32    psMetadata *stats = NULL;           // Container for statistics
     33    FILE *statsFile = NULL;             // File stream for statistics
    3434    if (statsName && strlen(statsName) > 0) {
    35         psString resolved = pmConfigConvertFilename(statsName, config, true, true); ///< Resolved filename
     35        psString resolved = pmConfigConvertFilename(statsName, config, true, true); // Resolved filename
    3636        statsFile = fopen(resolved, "w");
    3737        if (!statsFile) {
     
    4545    }
    4646
    47     const char *outName = psMetadataLookupStr(NULL, config->arguments, "FILERULE.OUTPUT"); ///< Output filerule
    48     pmFPAfile *output = psMetadataLookupPtr(NULL, config->files, outName); ///< Output file
     47    const char *outName = psMetadataLookupStr(NULL, config->arguments, "FILERULE.OUTPUT"); // Output filerule
     48    pmFPAfile *output = psMetadataLookupPtr(NULL, config->files, outName); // Output file
    4949    assert(output);                     // We added it earlier
    5050
    5151    const char *inName = psMetadataLookupStr(NULL, config->arguments, "FILERULE.INPUT"); ///< Input filerule
    52     pmFPAfile *input1 = NULL, *input2 = NULL; ///< Input files
    53     psString fileRegex = NULL;   ///< Regular expression to find input files
     52    pmFPAfile *input1 = NULL, *input2 = NULL; // Input files
     53    psString fileRegex = NULL;   // Regular expression to find input files
    5454    psStringAppend(&fileRegex, "^%s$", inName);
    55     psMetadataIterator *iter = psMetadataIteratorAlloc(config->files, PS_LIST_HEAD, fileRegex); ///< Iterator
    56     psMetadataItem *item = psMetadataGetAndIncrement(iter); ///< Item from iteration
     55    psMetadataIterator *iter = psMetadataIteratorAlloc(config->files, PS_LIST_HEAD, fileRegex); // Iterator
     56    psMetadataItem *item = psMetadataGetAndIncrement(iter); // Item from iteration
    5757    input1 = item->data.V;
    5858    assert(input1);                     // It should be there!
     
    6363    psFree(iter);
    6464
    65     pmFPAview *view = pmFPAviewAlloc(0); ///< Pointer into FPA hierarchy
    66     pmHDU *lastHDU = NULL;              ///< Last HDU that was updated
     65    pmFPAview *view = pmFPAviewAlloc(0); // Pointer into FPA hierarchy
     66    pmHDU *lastHDU = NULL;              // Last HDU that was updated
    6767
    6868    // Iterate over the FPA hierarchy
     
    7171    }
    7272
    73     pmChip *outChip;                    ///< Output chip of interest
     73    pmChip *outChip;                    // Output chip of interest
    7474    while ((outChip = pmFPAviewNextChip(view, output->fpa, 1)) != NULL) {
    75         pmChip *inChip1 = pmFPAviewThisChip(view, input1->fpa); ///< Input chip of interest
    76         pmChip *inChip2 = input2 ? pmFPAviewThisChip(view, input2->fpa) : NULL; ///< Input chip of interest
     75        pmChip *inChip1 = pmFPAviewThisChip(view, input1->fpa); // Input chip of interest
     76        pmChip *inChip2 = input2 ? pmFPAviewThisChip(view, input2->fpa) : NULL; // Input chip of interest
    7777        if (inChip2 && ((!inChip1->file_exists && inChip2->file_exists) ||
    7878                        (inChip1->file_exists && !inChip2->file_exists))) {
     
    9090        }
    9191
    92         pmCell *outCell;                ///< Cell of interest
     92        pmCell *outCell;                // Cell of interest
    9393        while ((outCell = pmFPAviewNextCell(view, output->fpa, 1)) != NULL) {
    94             pmCell *inCell1 = pmFPAviewThisCell(view, input1->fpa); ///< Input cell of interest
    95             pmCell *inCell2 = input2 ? pmFPAviewThisCell(view, input2->fpa) : NULL; ///< Input cell of interest
     94            pmCell *inCell1 = pmFPAviewThisCell(view, input1->fpa); // Input cell of interest
     95            pmCell *inCell2 = input2 ? pmFPAviewThisCell(view, input2->fpa) : NULL; // Input cell of interest
    9696            if (inCell2 && ((!inCell1->file_exists && inCell2->file_exists) ||
    9797                            (inCell1->file_exists && !inCell2->file_exists))) {
     
    117117            }
    118118
    119             pmReadout *outRO;           ///< Readout of interest
     119            pmReadout *outRO;           // Readout of interest
    120120            while ((outRO = pmFPAviewNextReadout(view, output->fpa, 1))) {
    121121                if (!pmFPAfileIOChecks(config, view, PM_FPA_BEFORE)) {
    122122                    return false;
    123123                }
    124                 pmReadout *inRO1 = pmFPAviewThisReadout(view, input1->fpa);///< Input readout of interest
     124                pmReadout *inRO1 = pmFPAviewThisReadout(view, input1->fpa);// Input readout of interest
    125125                pmReadout *inRO2 = input2 ? pmFPAviewThisReadout(view, input2->fpa) :
    126                     NULL;///< Input readout of interest
     126                    NULL;// Input readout of interest
    127127
    128128                if (inRO2 && ((!inRO1->data_exists && inRO2->data_exists) ||
Note: See TracChangeset for help on using the changeset viewer.