IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 19477


Ignore:
Timestamp:
Sep 10, 2008, 3:24:57 PM (18 years ago)
Author:
Paul Price
Message:

Getting the order right.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppStack/src/ppStackLoop.c

    r19476 r19477  
    467467
    468468
     469    // Start threading
     470    ppStackThreadInit();
     471    ppStackThreadData *stack = ppStackThreadDataSetup(cells, imageNames, maskNames, weightNames, config);
     472
    469473    memDump("preinitial");
    470474
     
    474478    pmFPAview *view = NULL;             // View to readout
    475479    psArray *inspect = NULL;            // Array of arrays of pixels to inspect
    476     ppStackThreadData *stack = NULL;    // Data for stacking
    477480    psVector *exptimes = psVectorAlloc(num, PS_TYPE_F32); // Exposure times for each input
    478481    {
     
    487490            psFree(inputMask);
    488491            psFree(exptimes);
     492            psFree(cells);
    489493            return false;
    490494        }
     
    499503            psFree(inputMask);
    500504            psFree(exptimes);
     505            psFree(cells);
    501506            return false;
    502507        }
     
    516521            psFree(outRO);
    517522            psFree(exptimes);
     523            psFree(cells);
    518524            return false;
    519525        }
     
    536542        psFree(cellList);
    537543
    538         // Start threading
    539         ppStackThreadInit();
    540         ppStackThreadData *stack = ppStackThreadDataSetup(cells, imageNames, maskNames, weightNames, config);
    541         psFree(cells);
     544    psFree(cells);
    542545
    543546        bool status;                    // Status of read
Note: See TracChangeset for help on using the changeset viewer.