IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 20, 2010, 4:39:34 PM (16 years ago)
Author:
rhenders
Message:

Now using weird PSPS names for batch types, 'P2', 'ST' etc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippToPsps/src/ippToPsps.c

    r28529 r29179  
    158158    psMetadataAddStr(arguments, PS_LIST_TAIL, "-results", 0, "Path to results output", NULL);
    159159    psMetadataAddStr(arguments, PS_LIST_TAIL, "-config", 0, "Path to config dir", NULL);
    160     psMetadataAddStr(arguments, PS_LIST_TAIL, "-batch", 0, "Product type: [det|stack|diff]", NULL);
     160    psMetadataAddStr(arguments, PS_LIST_TAIL, "-batch", 0, "Product type: [IN|P2|ST|TODO]", NULL);
    161161
    162162    bool ret = true;
     
    181181        if (!tmp) this->batchType = BATCH_UNDEFINED;
    182182        else if (strcmp(tmp, "test") == 0) this->batchType = BATCH_TEST;
    183         else if (strcmp(tmp, "init") == 0) this->batchType = BATCH_INIT;
    184         else if (strcmp(tmp, "det") == 0) this->batchType = BATCH_DETECTION;
    185         else if (strcmp(tmp, "stack") == 0) this->batchType = BATCH_STACK;
    186         else if (strcmp(tmp, "diff") == 0) this->batchType = BATCH_DIFFERENCE;
     183        else if (strcmp(tmp, "IN") == 0) this->batchType = BATCH_INIT;
     184        else if (strcmp(tmp, "P2") == 0) this->batchType = BATCH_DETECTION;
     185        else if (strcmp(tmp, "ST") == 0) this->batchType = BATCH_STACK;
     186        else if (strcmp(tmp, "TODO") == 0) this->batchType = BATCH_DIFFERENCE;
    187187        else this->batchType = BATCH_UNDEFINED;
    188188
Note: See TracChangeset for help on using the changeset viewer.