IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 14, 2006, 7:31:12 PM (20 years ago)
Author:
jhoblitt
Message:

stub out -tonormalize

File:
1 edited

Legend:

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

    r8331 r8349  
    171171    psMetadataAddStr(addstacArgs, PS_LIST_TAIL, "-recip",  0,
    172172        "define recipe (required)", NULL);
     173    psMetadataAddBool(addstacArgs, PS_LIST_TAIL, "-pleasenormalize",  0,
     174        "dude, make me normal", false);
     175
     176    // -tonormalize
     177    psMetadata *tonormalizeArgs = psMetadataAlloc();
     178    psMetadataAddBool(tonormalizeArgs, PS_LIST_TAIL, "-simple",  0,
     179        "use the simple output format", false);
    173180   
    174181    // -stacked
     
    357364    PXTOOL_MODE("-processed",       DETTOOL_MODE_PROCESSED,     procArgs);
    358365    PXTOOL_MODE("-addstacked",      DETTOOL_MODE_ADDSTACKED,    addstacArgs);
     366    PXTOOL_MODE("-tonormalize",     DETTOOL_MODE_TONORMALIZE,   tonormalizeArgs);
    359367    PXTOOL_MODE("-stacked",         DETTOOL_MODE_STACKED,       stacArgs);
    360368    PXTOOL_MODE("-stackedframe",    DETTOOL_MODE_STACKEDFRAME,  stacframeArgs);
     
    383391        printf("\nPan-STARRS Detrend Tool\n");
    384392        printf("Usage: %s <mode> [<options>]\n\n", argv[0]);
    385         printf(" <mode> : [-pending|-definebyexp|-definebyquery|-runs|-selectrun|-select|-raw|-addprocessed|-tostack|-processed|-addstacked|-stacked|-stackedframe|-addnormalized|-normalized|-normalizedframe|-addresidimfile|-residimfile|-addresidexp|-residexp|-declaremasterframe|-masterframe|-master|-rerun]\n\n");
     393        printf(" <mode> : [-pending|-definebyexp|-definebyquery|-runs|-selectrun|-select|-raw|-addprocessed|-tostack|-processed|-addstacked|-tonormalize|-stacked|-stackedframe|-addnormalized|-normalized|-normalizedframe|-addresidimfile|-residimfile|-addresidexp|-residexp|-declaremasterframe|-masterframe|-master|-rerun]\n\n");
    386394        fprintf (stdout, "-pending ");
    387395        psArgumentHelp(pendingArgs);
     
    431439        psFree(addstacArgs);
    432440
     441        fprintf (stdout, "-tonormalize ");
     442        psArgumentHelp(tonormalizeArgs);
     443        psFree(tonormalizeArgs);
     444
    433445        fprintf (stdout, "-stacked ");
    434446        psArgumentHelp(stacArgs);
     
    498510    psFree(procArgs);
    499511    psFree(addstacArgs);
     512    psFree(tonormalizeArgs);
    500513    psFree(stacArgs);
    501514    psFree(stacframeArgs);
Note: See TracChangeset for help on using the changeset viewer.