IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 28, 2007, 6:43:37 PM (19 years ago)
Author:
jhoblitt
Message:

VERSION 1.1.4

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippdb/src/ippdb.h

    r12061 r12130  
    25102510
    25112511typedef struct {
     2512    psS64           guide_id;
    25122513    char            *exp_tag;
    2513     psS32           guide_version;
    25142514    char            *recipe;
    25152515} guidePendingExpRow;
     
    25212521
    25222522guidePendingExpRow *guidePendingExpRowAlloc(
     2523    psS64           guide_id,
    25232524    const char      *exp_tag,
    2524     psS32           guide_version,
    25252525    const char      *recipe
    25262526);
     
    25532553bool guidePendingExpInsert(
    25542554    psDB            *dbh,               ///< Database handle
     2555    psS64           guide_id,
    25552556    const char      *exp_tag,
    2556     psS32           guide_version,
    25572557    const char      *recipe
    25582558);
     
    27112711
    27122712typedef struct {
     2713    psS64           chip_id;
    27132714    char            *exp_tag;
    2714     psS32           chip_version;
    2715     psS32           guide_version;
     2715    psS64           guide_id;
    27162716    char            *label;
    27172717    char            *recipe;
     
    27262726
    27272727chipPendingExpRow *chipPendingExpRowAlloc(
     2728    psS64           chip_id,
    27282729    const char      *exp_tag,
    2729     psS32           chip_version,
    2730     psS32           guide_version,
     2730    psS64           guide_id,
    27312731    const char      *label,
    27322732    const char      *recipe,
     
    27622762bool chipPendingExpInsert(
    27632763    psDB            *dbh,               ///< Database handle
     2764    psS64           chip_id,
    27642765    const char      *exp_tag,
    2765     psS32           chip_version,
    2766     psS32           guide_version,
     2766    psS64           guide_id,
    27672767    const char      *label,
    27682768    const char      *recipe,
     
    29242924
    29252925typedef struct {
     2926    psS64           chip_id;
    29262927    char            *exp_tag;
    2927     psS32           chip_version;
    2928     psS32           guide_version;
     2928    psS64           guide_id;
    29292929    char            *class_id;
    29302930    char            *recipe;
     
    29382938
    29392939chipPendingImfileRow *chipPendingImfileRowAlloc(
     2940    psS64           chip_id,
    29402941    const char      *exp_tag,
    2941     psS32           chip_version,
    2942     psS32           guide_version,
     2942    psS64           guide_id,
    29432943    const char      *class_id,
    29442944    const char      *recipe,
     
    29732973bool chipPendingImfileInsert(
    29742974    psDB            *dbh,               ///< Database handle
     2975    psS64           chip_id,
    29752976    const char      *exp_tag,
    2976     psS32           chip_version,
    2977     psS32           guide_version,
     2977    psS64           guide_id,
    29782978    const char      *class_id,
    29792979    const char      *recipe,
     
    31343134
    31353135typedef struct {
     3136    psS64           chip_id;
    31363137    char            *exp_tag;
    3137     psS32           chip_version;
    3138     psS32           guide_version;
     3138    psS64           guide_id;
    31393139    char            *label;
    31403140    char            *expgroup;
     
    31483148
    31493149chipProcessedExpRow *chipProcessedExpRowAlloc(
     3150    psS64           chip_id,
    31503151    const char      *exp_tag,
    3151     psS32           chip_version,
    3152     psS32           guide_version,
     3152    psS64           guide_id,
    31533153    const char      *label,
    31543154    const char      *expgroup,
     
    31833183bool chipProcessedExpInsert(
    31843184    psDB            *dbh,               ///< Database handle
     3185    psS64           chip_id,
    31853186    const char      *exp_tag,
    3186     psS32           chip_version,
    3187     psS32           guide_version,
     3187    psS64           guide_id,
    31883188    const char      *label,
    31893189    const char      *expgroup,
     
    35393539
    35403540typedef struct {
     3541    psS64           chip_id;
    35413542    char            *exp_tag;
    3542     psS32           chip_version;
    3543     psS32           guide_version;
     3543    psS64           guide_id;
    35443544    char            *class_id;
    35453545    char            *recipe;
     
    35583558
    35593559chipProcessedImfileRow *chipProcessedImfileRowAlloc(
     3560    psS64           chip_id,
    35603561    const char      *exp_tag,
    3561     psS32           chip_version,
    3562     psS32           guide_version,
     3562    psS64           guide_id,
    35633563    const char      *class_id,
    35643564    const char      *recipe,
     
    35983598bool chipProcessedImfileInsert(
    35993599    psDB            *dbh,               ///< Database handle
     3600    psS64           chip_id,
    36003601    const char      *exp_tag,
    3601     psS32           chip_version,
    3602     psS32           guide_version,
     3602    psS64           guide_id,
    36033603    const char      *class_id,
    36043604    const char      *recipe,
     
    37643764
    37653765typedef struct {
    3766     char            *exp_tag;
    3767     psS32           cam_version;
    3768     psS32           chip_version;
     3766    psS64           cam_id;
     3767    psS64           chip_id;
    37693768    char            *label;
    37703769    char            *expgroup;
     
    37783777
    37793778camPendingExpRow *camPendingExpRowAlloc(
    3780     const char      *exp_tag,
    3781     psS32           cam_version,
    3782     psS32           chip_version,
     3779    psS64           cam_id,
     3780    psS64           chip_id,
    37833781    const char      *label,
    37843782    const char      *expgroup,
     
    38133811bool camPendingExpInsert(
    38143812    psDB            *dbh,               ///< Database handle
    3815     const char      *exp_tag,
    3816     psS32           cam_version,
    3817     psS32           chip_version,
     3813    psS64           cam_id,
     3814    psS64           chip_id,
    38183815    const char      *label,
    38193816    const char      *expgroup,
     
    39743971
    39753972typedef struct {
    3976     char            *exp_tag;
    3977     psS32           cam_version;
    3978     psS32           chip_version;
     3973    psS64           cam_id;
     3974    psS64           chip_id;
    39793975    char            *label;
    39803976    char            *uri;
     
    40003996
    40013997camProcessedExpRow *camProcessedExpRowAlloc(
    4002     const char      *exp_tag,
    4003     psS32           cam_version,
    4004     psS32           chip_version,
     3998    psS64           cam_id,
     3999    psS64           chip_id,
    40054000    const char      *label,
    40064001    const char      *uri,
     
    40474042bool camProcessedExpInsert(
    40484043    psDB            *dbh,               ///< Database handle
    4049     const char      *exp_tag,
    4050     psS32           cam_version,
    4051     psS32           chip_version,
     4044    psS64           cam_id,
     4045    psS64           chip_id,
    40524046    const char      *label,
    40534047    const char      *uri,
     
    44154409
    44164410typedef struct {
    4417     psS32           det_id;
     4411    psS64           det_id;
    44184412    psS32           iteration;
    44194413    char            *det_type;
     
    44504444
    44514445detRunRow *detRunRowAlloc(
    4452     psS32           det_id,
     4446    psS64           det_id,
    44534447    psS32           iteration,
    44544448    const char      *det_type,
     
    45064500bool detRunInsert(
    45074501    psDB            *dbh,               ///< Database handle
    4508     psS32           det_id,
     4502    psS64           det_id,
    45094503    psS32           iteration,
    45104504    const char      *det_type,
     
    46884682
    46894683typedef struct {
    4690     psS32           det_id;
     4684    psS64           det_id;
    46914685    psS32           iteration;
    46924686    char            *exp_tag;
     
    47004694
    47014695detInputExpRow *detInputExpRowAlloc(
    4702     psS32           det_id,
     4696    psS64           det_id,
    47034697    psS32           iteration,
    47044698    const char      *exp_tag,
     
    47334727bool detInputExpInsert(
    47344728    psDB            *dbh,               ///< Database handle
    4735     psS32           det_id,
     4729    psS64           det_id,
    47364730    psS32           iteration,
    47374731    const char      *exp_tag,
     
    48924886
    48934887typedef struct {
    4894     psS32           det_id;
     4888    psS64           det_id;
    48954889    char            *exp_tag;
    48964890    char            *class_id;
     
    49104904
    49114905detProcessedImfileRow *detProcessedImfileRowAlloc(
    4912     psS32           det_id,
     4906    psS64           det_id,
    49134907    const char      *exp_tag,
    49144908    const char      *class_id,
     
    49494943bool detProcessedImfileInsert(
    49504944    psDB            *dbh,               ///< Database handle
    4951     psS32           det_id,
     4945    psS64           det_id,
    49524946    const char      *exp_tag,
    49534947    const char      *class_id,
     
    51145108
    51155109typedef struct {
    5116     psS32           det_id;
     5110    psS64           det_id;
    51175111    char            *exp_tag;
    51185112    char            *recipe;
     
    51305124
    51315125detProcessedExpRow *detProcessedExpRowAlloc(
    5132     psS32           det_id,
     5126    psS64           det_id,
    51335127    const char      *exp_tag,
    51345128    const char      *recipe,
     
    51675161bool detProcessedExpInsert(
    51685162    psDB            *dbh,               ///< Database handle
    5169     psS32           det_id,
     5163    psS64           det_id,
    51705164    const char      *exp_tag,
    51715165    const char      *recipe,
     
    53305324
    53315325typedef struct {
    5332     psS32           det_id;
     5326    psS64           det_id;
    53335327    psS32           iteration;
    53345328    char            *class_id;
     
    53475341
    53485342detStackedImfileRow *detStackedImfileRowAlloc(
    5349     psS32           det_id,
     5343    psS64           det_id,
    53505344    psS32           iteration,
    53515345    const char      *class_id,
     
    53855379bool detStackedImfileInsert(
    53865380    psDB            *dbh,               ///< Database handle
    5387     psS32           det_id,
     5381    psS64           det_id,
    53885382    psS32           iteration,
    53895383    const char      *class_id,
     
    55495543
    55505544typedef struct {
    5551     psS32           det_id;
     5545    psS64           det_id;
    55525546    psS32           iteration;
    55535547    char            *class_id;
     
    55625556
    55635557detNormalizedStatImfileRow *detNormalizedStatImfileRowAlloc(
    5564     psS32           det_id,
     5558    psS64           det_id,
    55655559    psS32           iteration,
    55665560    const char      *class_id,
     
    55965590bool detNormalizedStatImfileInsert(
    55975591    psDB            *dbh,               ///< Database handle
    5598     psS32           det_id,
     5592    psS64           det_id,
    55995593    psS32           iteration,
    56005594    const char      *class_id,
     
    57565750
    57575751typedef struct {
    5758     psS32           det_id;
     5752    psS64           det_id;
    57595753    psS32           iteration;
    57605754    char            *class_id;
     
    57735767
    57745768detNormalizedImfileRow *detNormalizedImfileRowAlloc(
    5775     psS32           det_id,
     5769    psS64           det_id,
    57765770    psS32           iteration,
    57775771    const char      *class_id,
     
    58115805bool detNormalizedImfileInsert(
    58125806    psDB            *dbh,               ///< Database handle
    5813     psS32           det_id,
     5807    psS64           det_id,
    58145808    psS32           iteration,
    58155809    const char      *class_id,
     
    59755969
    59765970typedef struct {
    5977     psS32           det_id;
     5971    psS64           det_id;
    59785972    psS32           iteration;
    59795973    char            *recipe;
     
    59915985
    59925986detNormalizedExpRow *detNormalizedExpRowAlloc(
    5993     psS32           det_id,
     5987    psS64           det_id,
    59945988    psS32           iteration,
    59955989    const char      *recipe,
     
    60286022bool detNormalizedExpInsert(
    60296023    psDB            *dbh,               ///< Database handle
    6030     psS32           det_id,
     6024    psS64           det_id,
    60316025    psS32           iteration,
    60326026    const char      *recipe,
     
    61916185
    61926186typedef struct {
    6193     psS32           det_id;
     6187    psS64           det_id;
    61946188    psS32           iteration;
    61956189    char            *exp_tag;
     
    62106204
    62116205detResidImfileRow *detResidImfileRowAlloc(
    6212     psS32           det_id,
     6206    psS64           det_id,
    62136207    psS32           iteration,
    62146208    const char      *exp_tag,
     
    62506244bool detResidImfileInsert(
    62516245    psDB            *dbh,               ///< Database handle
    6252     psS32           det_id,
     6246    psS64           det_id,
    62536247    psS32           iteration,
    62546248    const char      *exp_tag,
     
    64166410
    64176411typedef struct {
    6418     psS32           det_id;
     6412    psS64           det_id;
    64196413    psS32           iteration;
    64206414    char            *exp_tag;
     
    64346428
    64356429detResidExpRow *detResidExpRowAlloc(
    6436     psS32           det_id,
     6430    psS64           det_id,
    64376431    psS32           iteration,
    64386432    const char      *exp_tag,
     
    64736467bool detResidExpInsert(
    64746468    psDB            *dbh,               ///< Database handle
    6475     psS32           det_id,
     6469    psS64           det_id,
    64766470    psS32           iteration,
    64776471    const char      *exp_tag,
     
    66386632
    66396633typedef struct {
    6640     psS32           det_id;
     6634    psS64           det_id;
    66416635    psS32           iteration;
    66426636    psF64           bg;
     
    66536647
    66546648detRunSummaryRow *detRunSummaryRowAlloc(
    6655     psS32           det_id,
     6649    psS64           det_id,
    66566650    psS32           iteration,
    66576651    psF64           bg,
     
    66896683bool detRunSummaryInsert(
    66906684    psDB            *dbh,               ///< Database handle
    6691     psS32           det_id,
     6685    psS64           det_id,
    66926686    psS32           iteration,
    66936687    psF64           bg,
     
    68516845
    68526846typedef struct {
    6853     psS32           warp_id;
     6847    psS64           warp_id;
    68546848    char            *mode;
    68556849    char            *state;
     
    68656859
    68666860warpRunRow *warpRunRowAlloc(
    6867     psS32           warp_id,
     6861    psS64           warp_id,
    68686862    const char      *mode,
    68696863    const char      *state,
     
    69006894bool warpRunInsert(
    69016895    psDB            *dbh,               ///< Database handle
    6902     psS32           warp_id,
     6896    psS64           warp_id,
    69036897    const char      *mode,
    69046898    const char      *state,
     
    70617055
    70627056typedef struct {
    7063     psS32           warp_id;
    7064     char            *exp_tag;
    7065     psS32           cam_version;
     7057    psS64           warp_id;
     7058    psS64           cam_id;
    70667059    bool            magiced;
    70677060} warpInputExpRow;
     
    70737066
    70747067warpInputExpRow *warpInputExpRowAlloc(
    7075     psS32           warp_id,
    7076     const char      *exp_tag,
    7077     psS32           cam_version,
     7068    psS64           warp_id,
     7069    psS64           cam_id,
    70787070    bool            magiced
    70797071);
     
    71067098bool warpInputExpInsert(
    71077099    psDB            *dbh,               ///< Database handle
    7108     psS32           warp_id,
    7109     const char      *exp_tag,
    7110     psS32           cam_version,
     7100    psS64           warp_id,
     7101    psS64           cam_id,
    71117102    bool            magiced
    71127103);
     
    72657256
    72667257typedef struct {
    7267     psS32           warp_id;
     7258    psS64           warp_id;
    72687259    char            *skycell_id;
    72697260    char            *tess_id;
    7270     char            *exp_tag;
    7271     psS32           cam_version;
     7261    psS64           cam_id;
    72727262    char            *class_id;
    72737263    psS16           fault;
     
    72807270
    72817271warpSkyCellMapRow *warpSkyCellMapRowAlloc(
    7282     psS32           warp_id,
     7272    psS64           warp_id,
    72837273    const char      *skycell_id,
    72847274    const char      *tess_id,
    7285     const char      *exp_tag,
    7286     psS32           cam_version,
     7275    psS64           cam_id,
    72877276    const char      *class_id,
    72887277    psS16           fault
     
    73167305bool warpSkyCellMapInsert(
    73177306    psDB            *dbh,               ///< Database handle
    7318     psS32           warp_id,
     7307    psS64           warp_id,
    73197308    const char      *skycell_id,
    73207309    const char      *tess_id,
    7321     const char      *exp_tag,
    7322     psS32           cam_version,
     7310    psS64           cam_id,
    73237311    const char      *class_id,
    73247312    psS16           fault
     
    74787466
    74797467typedef struct {
    7480     psS32           warp_id;
     7468    psS64           warp_id;
    74817469    char            *skycell_id;
    74827470    char            *tess_id;
     
    74927480
    74937481warpSkyfileRow *warpSkyfileRowAlloc(
    7494     psS32           warp_id,
     7482    psS64           warp_id,
    74957483    const char      *skycell_id,
    74967484    const char      *tess_id,
     
    75277515bool warpSkyfileInsert(
    75287516    psDB            *dbh,               ///< Database handle
    7529     psS32           warp_id,
     7517    psS64           warp_id,
    75307518    const char      *skycell_id,
    75317519    const char      *tess_id,
     
    76887676
    76897677typedef struct {
    7690     psS32           diff_id;
     7678    psS64           diff_id;
    76917679    char            *state;
    76927680    char            *workdir;
     
    77037691
    77047692diffRunRow *diffRunRowAlloc(
    7705     psS32           diff_id,
     7693    psS64           diff_id,
    77067694    const char      *state,
    77077695    const char      *workdir,
     
    77397727bool diffRunInsert(
    77407728    psDB            *dbh,               ///< Database handle
    7741     psS32           diff_id,
     7729    psS64           diff_id,
    77427730    const char      *state,
    77437731    const char      *workdir,
     
    79017889
    79027890typedef struct {
    7903     psS32           diff_id;
    7904     psS32           warp_id;
     7891    psS64           diff_id;
     7892    psS64           warp_id;
    79057893    char            *skycell_id;
    79067894    char            *tess_id;
     
    79157903
    79167904diffInputSkyfileRow *diffInputSkyfileRowAlloc(
    7917     psS32           diff_id,
    7918     psS32           warp_id,
     7905    psS64           diff_id,
     7906    psS64           warp_id,
    79197907    const char      *skycell_id,
    79207908    const char      *tess_id,
     
    79507938bool diffInputSkyfileInsert(
    79517939    psDB            *dbh,               ///< Database handle
    7952     psS32           diff_id,
    7953     psS32           warp_id,
     7940    psS64           diff_id,
     7941    psS64           warp_id,
    79547942    const char      *skycell_id,
    79557943    const char      *tess_id,
     
    81118099
    81128100typedef struct {
    8113     psS32           diff_id;
     8101    psS64           diff_id;
    81148102    char            *uri;
    81158103    psF64           bg;
     
    81238111
    81248112diffSkyfileRow *diffSkyfileRowAlloc(
    8125     psS32           diff_id,
     8113    psS64           diff_id,
    81268114    const char      *uri,
    81278115    psF64           bg,
     
    81568144bool diffSkyfileInsert(
    81578145    psDB            *dbh,               ///< Database handle
    8158     psS32           diff_id,
     8146    psS64           diff_id,
    81598147    const char      *uri,
    81608148    psF64           bg,
     
    83158303
    83168304typedef struct {
    8317     psS32           stack_id;
     8305    psS64           stack_id;
    83188306    char            *state;
    83198307    char            *workdir;
     
    83308318
    83318319stackRunRow *stackRunRowAlloc(
    8332     psS32           stack_id,
     8320    psS64           stack_id,
    83338321    const char      *state,
    83348322    const char      *workdir,
     
    83668354bool stackRunInsert(
    83678355    psDB            *dbh,               ///< Database handle
    8368     psS32           stack_id,
     8356    psS64           stack_id,
    83698357    const char      *state,
    83708358    const char      *workdir,
     
    85288516
    85298517typedef struct {
    8530     psS32           stack_id;
    8531     psS32           warp_id;
     8518    psS64           stack_id;
     8519    psS64           warp_id;
    85328520} stackInputSkyfileRow;
    85338521
     
    85388526
    85398527stackInputSkyfileRow *stackInputSkyfileRowAlloc(
    8540     psS32           stack_id,
    8541     psS32           warp_id
     8528    psS64           stack_id,
     8529    psS64           warp_id
    85428530);
    85438531
     
    85698557bool stackInputSkyfileInsert(
    85708558    psDB            *dbh,               ///< Database handle
    8571     psS32           stack_id,
    8572     psS32           warp_id
     8559    psS64           stack_id,
     8560    psS64           warp_id
    85738561);
    85748562
     
    87268714
    87278715typedef struct {
    8728     psS32           stack_id;
     8716    psS64           stack_id;
    87298717    char            *uri;
    87308718    psF64           bg;
     
    87388726
    87398727stackSumSkyfileRow *stackSumSkyfileRowAlloc(
    8740     psS32           stack_id,
     8728    psS64           stack_id,
    87418729    const char      *uri,
    87428730    psF64           bg,
     
    87718759bool stackSumSkyfileInsert(
    87728760    psDB            *dbh,               ///< Database handle
    8773     psS32           stack_id,
     8761    psS64           stack_id,
    87748762    const char      *uri,
    87758763    psF64           bg,
Note: See TracChangeset for help on using the changeset viewer.