IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9211


Ignore:
Timestamp:
Oct 4, 2006, 11:16:40 AM (20 years ago)
Author:
jhoblitt
Message:

add detRun.det_type rawDetrendExp.camera, detStackedImfile.uri to the output of -tonormalize

File:
1 edited

Legend:

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

    r9210 r9211  
    23112311    psString query = psStringCopy(
    23122312        "SELECT"
     2313        "   detRun.det_type,"
     2314        "   rawDetrendExp.camera,"
     2315        "   detStackedImfile.uri,"
    23132316        "   detNormalizedStatImfile.*"
    23142317        " FROM detNormalizedStatImfile"
     2318        " JOIN detStackedImfile"
     2319        "   USING(det_id, iteration, class_id)"
     2320        " JOIN detRun"
     2321        "   ON detNormalizedStatImfile.det_id = detRun.position"
     2322        " JOIN detInputExp"
     2323        "   ON detRun.position = detInputExp.det_id"
     2324        "   AND detRun.iteration = detInputExp.iteration"
     2325        " JOIN rawDetrendExp"
     2326        "   ON detInputExp.exp_tag = rawDetrendExp.exp_tag"
    23152327        " LEFT JOIN detNormalizedImfile"
    2316         "   USING(det_id, iteration, class_id)"
     2328        "   ON detRun.position = detNormalizedImfile.det_id"
     2329        "   AND detRun.iteration = detNormalizedImfile.iteration"
     2330        "   AND detNormalizedStatImfile.class_id = detNormalizedImfile.class_id"
    23172331        " WHERE"
    23182332        "   detNormalizedImfile.det_id IS NULL"
Note: See TracChangeset for help on using the changeset viewer.