IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 8847 for trunk/ppMerge/src


Ignore:
Timestamp:
Sep 19, 2006, 4:35:51 PM (20 years ago)
Author:
Paul Price
Message:

Remove entries from CELL.BIASSEC once combination is done; add string.h where required.

Location:
trunk/ppMerge/src
Files:
4 edited

Legend:

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

    r8781 r8847  
    55#include <stdio.h>
    66#include <assert.h>
     7#include <string.h>
    78#include <pslib.h>
    89#include <psmodules.h>
  • trunk/ppMerge/src/ppMergeCombine.c

    r8781 r8847  
    44
    55#include <stdio.h>
     6#include <string.h>
    67#include <unistd.h>
    78#include <assert.h>
     
    208209            }
    209210
     211            // We threw away the bias sections --- record this
     212            psMetadataItem *biassecItem = psMetadataLookup(cell->concepts, "CELL.BIASSEC"); // Item of BIASSEC
     213            psList *biassecList = biassecItem->data.V; // List of BIASSECs
     214            while (psListRemove(biassecList, PS_LIST_TAIL)); // Removing all entries
     215
    210216            // Blow away the cell data
    211217            for (int i = 0; i < filenames->n; i++) {
  • trunk/ppMerge/src/ppMergeOptions.c

    r8781 r8847  
    44
    55#include <stdio.h>
     6#include <string.h>
    67#include <pslib.h>
    78#include <psmodules.h>
  • trunk/ppMerge/src/ppMergeScaleZero.c

    r8781 r8847  
    55#include <stdio.h>
    66#include <assert.h>
     7#include <string.h>
    78#include <pslib.h>
    89#include <psmodules.h>
Note: See TracChangeset for help on using the changeset viewer.