IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 28, 2006, 10:11:42 AM (20 years ago)
Author:
Paul Price
Message:

Fixing arguments for pm{FPA,Chip,Cell}Write following API change last
night --- we now tell it that we want to write out only blank HDUs.

File:
1 edited

Legend:

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

    r7355 r7734  
    3333    // Iterate over the FPA
    3434    int cellNum = -1;                   // Cell number
    35     pmFPAWrite(data->out, data->outFile, config->database, false, false); // Write header only
     35    pmFPAWrite(data->out, data->outFile, config->database, true, false); // Write header only
    3636    psArray *chips = data->out->chips;  // Array of output chips
    3737    for (int i = 0; i < chips->n; i++) {
     
    4040            continue;
    4141        }
    42         pmChipWrite(chip, data->outFile, config->database, false, false); // Write header only
     42        pmChipWrite(chip, data->outFile, config->database, true, false); // Write header only
    4343        psArray *cells = chip->cells;   // Array of output cells
    4444        for (int j = 0; j < cells->n; j++) {
     
    4848            }
    4949            cellNum++;
    50             pmCellWrite(cell, data->outFile, config->database, false); // Write header only
     50            pmCellWrite(cell, data->outFile, config->database, true); // Write header only
    5151            pmReadout *readout = pmReadoutAlloc(cell); // Output readout of interest
    5252            psArray *stack = psArrayAlloc(filenames->n); // Stack of readouts to combine
Note: See TracChangeset for help on using the changeset viewer.