IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7083


Ignore:
Timestamp:
May 5, 2006, 5:45:43 PM (20 years ago)
Author:
jhoblitt
Message:

start -raw

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/dettool.c

    r7074 r7083  
    157157    PS_ASSERT_PTR_NON_NULL(config, false);
    158158
     159    // select exp_ids from detInputExp matching det_idp
     160    // where query should be pre-generated
     161    psArray *detInputExp =
     162        detInputExpSelectRowObjects(config->dbh, config->where, 0);
     163    if (!detInputExp) {
     164        psError(PS_ERR_UNKNOWN, false, "no rawDetrendExp rows found");
     165        return false;
     166    }
     167
     168    // generate where query with just the exp_ids
     169    for (long i = 0; i < psArrayLength(detInputExp); i++) {
     170    }
     171
     172    // select rawImfiles with matching exp_ids
     173
     174    // print imfile list
     175
    159176    return true;
    160177}
Note: See TracChangeset for help on using the changeset viewer.