IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 23, 2007, 3:41:56 PM (19 years ago)
Author:
jhoblitt
Message:

s/p0/reg/g
s/p1/guide/g
s/p2/chip/g
s/p6/stack/g
s/p5/diff/g
s/p4/warp/g
s/p3/cam/g

File:
1 edited

Legend:

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

    r11985 r12024  
    5959    CREATE_TABLE(rawExpCreateTable);
    6060    CREATE_TABLE(rawImfileCreateTable);
    61     CREATE_TABLE(p1PendingExpCreateTable);
    62     CREATE_TABLE(p2PendingExpCreateTable);
    63     CREATE_TABLE(p2PendingImfileCreateTable);
    64     CREATE_TABLE(p2ProcessedExpCreateTable);
    65     CREATE_TABLE(p2ProcessedImfileCreateTable);
    66     CREATE_TABLE(p2MaskCreateTable);
    67     CREATE_TABLE(p3PendingExpCreateTable);
    68     CREATE_TABLE(p3ProcessedExpCreateTable);
    69     CREATE_TABLE(p3MaskCreateTable);
     61    CREATE_TABLE(guidePendingExpCreateTable);
     62    CREATE_TABLE(chipPendingExpCreateTable);
     63    CREATE_TABLE(chipPendingImfileCreateTable);
     64    CREATE_TABLE(chipProcessedExpCreateTable);
     65    CREATE_TABLE(chipProcessedImfileCreateTable);
     66    CREATE_TABLE(chipMaskCreateTable);
     67    CREATE_TABLE(camPendingExpCreateTable);
     68    CREATE_TABLE(camProcessedExpCreateTable);
     69    CREATE_TABLE(camMaskCreateTable);
    7070    CREATE_TABLE(detRunCreateTable);
    7171    CREATE_TABLE(detInputExpCreateTable);
     
    7979    CREATE_TABLE(detResidExpCreateTable);
    8080    CREATE_TABLE(detRunSummaryCreateTable);
    81     CREATE_TABLE(p4RunCreateTable);
    82     CREATE_TABLE(p4InputExpCreateTable);
    83     CREATE_TABLE(p4SkyCellMapCreateTable);
    84     CREATE_TABLE(p4SkyfileCreateTable);
    85     CREATE_TABLE(p5RunCreateTable);
    86     CREATE_TABLE(p5InputSkyfileCreateTable);
    87     CREATE_TABLE(p5DiffSkyfileCreateTable);
    88     CREATE_TABLE(p6RunCreateTable);
    89     CREATE_TABLE(p6InputSkyfileCreateTable);
    90     CREATE_TABLE(p6SumSkyfileCreateTable);
     81    CREATE_TABLE(warpRunCreateTable);
     82    CREATE_TABLE(warpInputExpCreateTable);
     83    CREATE_TABLE(warpSkyCellMapCreateTable);
     84    CREATE_TABLE(warpSkyfileCreateTable);
     85    CREATE_TABLE(diffRunCreateTable);
     86    CREATE_TABLE(diffInputSkyfileCreateTable);
     87    CREATE_TABLE(diffSkyfileCreateTable);
     88    CREATE_TABLE(stackRunCreateTable);
     89    CREATE_TABLE(stackInputSkyfileCreateTable);
     90    CREATE_TABLE(stackSumSkyfileCreateTable);
    9191
    9292    return true;
     
    9999    PS_ASSERT_PTR_NON_NULL(config, false);
    100100
    101     fprintf (stdout, "*** delete the P2 tables? ***\n");
     101    fprintf (stdout, "*** delete the chip tables? ***\n");
    102102    fprintf (stdout, "*** to delete the tables, answer YES, and give password ***\n");
    103103    fprintf (stdout, "*** WARNING: this action is permanent ***\n\n");
    104104
    105     fprintf (stdout, "delete the P2 tables (YES/[n]): ");
     105    fprintf (stdout, "delete the chip tables (YES/[n]): ");
    106106    fgets (line, 128, stdin);
    107107    sscanf (line, "%s", answer);
     
    135135    DROP_TABLE(rawExpDropTable);
    136136    DROP_TABLE(rawImfileDropTable);
    137     DROP_TABLE(p1PendingExpDropTable);
    138     DROP_TABLE(p2PendingExpDropTable);
    139     DROP_TABLE(p2PendingImfileDropTable);
    140     DROP_TABLE(p2ProcessedExpDropTable);
    141     DROP_TABLE(p2ProcessedImfileDropTable);
    142     DROP_TABLE(p2MaskDropTable);
    143     DROP_TABLE(p3PendingExpDropTable);
    144     DROP_TABLE(p3ProcessedExpDropTable);
    145     DROP_TABLE(p3MaskDropTable);
     137    DROP_TABLE(guidePendingExpDropTable);
     138    DROP_TABLE(chipPendingExpDropTable);
     139    DROP_TABLE(chipPendingImfileDropTable);
     140    DROP_TABLE(chipProcessedExpDropTable);
     141    DROP_TABLE(chipProcessedImfileDropTable);
     142    DROP_TABLE(chipMaskDropTable);
     143    DROP_TABLE(camPendingExpDropTable);
     144    DROP_TABLE(camProcessedExpDropTable);
     145    DROP_TABLE(camMaskDropTable);
    146146    DROP_TABLE(detRunDropTable);
    147147    DROP_TABLE(detInputExpDropTable);
     
    155155    DROP_TABLE(detResidExpDropTable);
    156156    DROP_TABLE(detRunSummaryDropTable);
    157     DROP_TABLE(p4RunDropTable);
    158     DROP_TABLE(p4InputExpDropTable);
    159     DROP_TABLE(p4SkyCellMapDropTable);
    160     DROP_TABLE(p4SkyfileDropTable);
    161     DROP_TABLE(p5RunDropTable);
    162     DROP_TABLE(p5InputSkyfileDropTable);
    163     DROP_TABLE(p5DiffSkyfileDropTable);
    164     DROP_TABLE(p6RunDropTable);
    165     DROP_TABLE(p6InputSkyfileDropTable);
    166     DROP_TABLE(p6SumSkyfileDropTable);
     157    DROP_TABLE(warpRunDropTable);
     158    DROP_TABLE(warpInputExpDropTable);
     159    DROP_TABLE(warpSkyCellMapDropTable);
     160    DROP_TABLE(warpSkyfileDropTable);
     161    DROP_TABLE(diffRunDropTable);
     162    DROP_TABLE(diffInputSkyfileDropTable);
     163    DROP_TABLE(diffSkyfileDropTable);
     164    DROP_TABLE(stackRunDropTable);
     165    DROP_TABLE(stackInputSkyfileDropTable);
     166    DROP_TABLE(stackSumSkyfileDropTable);
    167167
    168168    return status;
Note: See TracChangeset for help on using the changeset viewer.