IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 14, 2009, 11:06:18 AM (17 years ago)
Author:
bills
Message:

Add data_group, dist_group, and note to the pipeline. These new columns will be used
for some of the tasks that label was used previously.

File:
1 edited

Legend:

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

    r25816 r25835  
    133133    PXOPT_LOOKUP_STR(tess_id, config->args, "-set_tess_id", false, false);
    134134    PXOPT_LOOKUP_STR(region, config->args, "-set_region", false, false);
     135    PXOPT_LOOKUP_STR(note, config->args, "-set_note", false, false);
    135136
    136137    PXOPT_LOOKUP_BOOL(pretend, config->args, "-pretend", false);
     
    235236
    236237        // queue the exp : force this to stop at the chip stage
    237         psS64 chip_id = pxchipQueueByExpTag(config, exp_id, workdir, label, reduction, expgroup, dvodb, tess_id, "chip");
     238        psS64 chip_id = pxchipQueueByExpTag(config, exp_id, workdir, label, label, NULL, reduction, expgroup, dvodb, tess_id, "chip", note);
    238239        if (!chip_id) {
    239240            if (!psDBRollback(config->dbh)) {
     
    523524                row->workdir,
    524525                row->label,
     526                row->data_group,
     527                row->dist_group,
    525528                row->reduction,
    526529                row->expgroup,
    527530                row->dvodb,
    528531                row->tess_id,
    529                 "camera")) {
     532                "camera",
     533                NULL // note does not propragate
     534                )) {
    530535            if (!psDBRollback(config->dbh)) {
    531536                psError(PS_ERR_UNKNOWN, false, "database error");
     
    658663                row->reduction,
    659664                row->label,
     665                row->data_group,
    660666                row->dvodb,
     667                NULL,       // note is not propagated
    661668                0)) {
    662669            if (!psDBRollback(config->dbh)) {
Note: See TracChangeset for help on using the changeset viewer.