IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11735


Ignore:
Timestamp:
Feb 9, 2007, 12:14:24 PM (19 years ago)
Author:
jhoblitt
Message:

p2/p3 version reorg

Location:
trunk/ippTools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/configure.ac

    r11723 r11735  
    1818PKG_CHECK_MODULES([PSLIB], [pslib >= 1.1.0])
    1919PKG_CHECK_MODULES([PSMODULES], [psmodules >= 1.1.0])
    20 PKG_CHECK_MODULES([IPPDB], [ippdb >= 1.1.3])
     20PKG_CHECK_MODULES([IPPDB], [ippdb >= 1.1.4])
    2121
    2222PXTOOLS_CFLAGS="${PSLIB_CFLAGS=} ${PSMODULES_CFLAGS=} ${IPPDB_CFLAGS=}"
  • trunk/ippTools/src/camtool.c

    r11713 r11735  
    396396    p3ProcessedExpRow *row = p3ProcessedExpRowAlloc(
    397397        exp_tag,
     398        pendingRow->p3_version,
     399        pendingRow->p2_version,
     400        pendingRow->label,
    398401        uri,
    399402        recipe,
     
    408411        zp_mean,
    409412        zp_stdev,
    410         pendingRow->p2_version,
    411         pendingRow->p3_version,
    412         pendingRow->label,
    413413        code
    414414    );
  • trunk/ippTools/src/chiptool.c

    r11713 r11735  
    859859    return p2ProcessedImfileRowAlloc(
    860860        imfile->exp_tag,
     861        imfile->p2_version,
     862        imfile->p1_version,
    861863        imfile->class_id,
     864        recipe,
    862865        uri,
    863         recipe,
    864866        bg,
    865867        bg_stdev,
     
    867869        b1_uri,
    868870        b2_uri,
    869         imfile->p1_version,
    870         imfile->p2_version,
    871871        code
    872872    );
     
    880880    return p2ProcessedExpRowAlloc(
    881881        pendingExp->exp_tag,
     882        pendingExp->p2_version,
    882883        pendingExp->p1_version,
     884        pendingExp->label
     885    );
     886}
     887
     888
     889static p3PendingExpRow *p2PendingToP3PendingExp(pxConfig *config, p2PendingExpRow *pendingExp)
     890{
     891    PS_ASSERT_PTR_NON_NULL(pendingExp, NULL);
     892
     893    return p3PendingExpRowAlloc(
     894        pendingExp->exp_tag,
     895        0x0,        // p3 version
    883896        pendingExp->p2_version,
    884897        pendingExp->label
    885898    );
    886899}
    887 
    888 
    889 static p3PendingExpRow *p2PendingToP3PendingExp(pxConfig *config, p2PendingExpRow *pendingExp)
    890 {
    891     PS_ASSERT_PTR_NON_NULL(pendingExp, NULL);
    892 
    893     return p3PendingExpRowAlloc(
    894         pendingExp->exp_tag,
    895         pendingExp->p1_version,
    896         pendingExp->p2_version,
    897         pendingExp->label
    898     );
    899 }
  • trunk/ippTools/src/regtool.c

    r11702 r11735  
    929929    p2PendingExpRow *p2Exp = p2PendingExpRowAlloc(
    930930        exp->exp_tag,
    931         "my recipe",
    932         0xff,   // XXX calc version number
    933         0xff,   // XXX calc version number
    934         label
     931        0x0,          // p2 version XXX calc version number
     932        0xdeadbeef,   // p1 version
     933        label,
     934        "my recipe"
    935935    );
    936936
     
    943943    return p2PendingImfileRowAlloc(
    944944        rawImfile->exp_tag,
     945        0x0,          // p2 version XXX calc version number
     946        0xdeadbeef,   // p1 version
    945947        rawImfile->class_id,
    946         rawImfile->uri,
    947948        "my recipe",
    948         0xff, // XXX calc version number
    949         0xff  // XXX calc version number
     949        rawImfile->uri
    950950    );
    951951}
Note: See TracChangeset for help on using the changeset viewer.