IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 13, 2005, 5:47:35 PM (21 years ago)
Author:
Paul Price
Message:

Upgrading for psLib-0.9.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/scripts/src/phase2/pmFPAConceptsGet.h

    r5105 r5786  
    77
    88psMetadataItem *p_pmFPAConceptGetFromCamera(pmCell *cell, // The cell
    9                                             const char *concept // Name of concept
     9                                            const char *concept // Name of concept
    1010    );
    1111psMetadataItem *p_pmFPAConceptGetFromHeader(pmFPA *fpa, // The FPA that contains the chip
    12                                             pmChip *chip, // The chip that contains the cell
    13                                             pmCell *cell, // The cell
    14                                             const char *concept // Name of concept
     12                                            pmChip *chip, // The chip that contains the cell
     13                                            pmCell *cell, // The cell
     14                                            const char *concept // Name of concept
    1515    );
    1616psMetadataItem *p_pmFPAConceptGetFromDefault(pmFPA *fpa, // The FPA that contains the chip
    17                                              pmChip *chip, // The chip that contains the cell
    18                                              pmCell *cell, // The cell
    19                                              const char *concept // Name of concept
     17                                             pmChip *chip, // The chip that contains the cell
     18                                             pmCell *cell, // The cell
     19                                             const char *concept // Name of concept
    2020    );
    2121psMetadataItem *p_pmFPAConceptGetFromDB(pmFPA *fpa, // The FPA that contains the chip
    22                                         pmChip *chip, // The chip that contains the cell
    23                                         pmCell *cell, // The cell
    24                                         psDB *db,       // DB handle
    25                                         const char *concept // Name of concept
     22                                        pmChip *chip, // The chip that contains the cell
     23                                        pmCell *cell, // The cell
     24                                        psDB *db,       // DB handle
     25                                        const char *concept // Name of concept
    2626    );
    2727psMetadataItem *p_pmFPAConceptGet(pmFPA *fpa, // The FPA
    28                                   pmChip *chip,// The chip
    29                                   pmCell *cell, // The cell
    30                                   psDB *db, // DB handle
    31                                   const char *concept // Concept name
     28                                  pmChip *chip,// The chip
     29                                  pmCell *cell, // The cell
     30                                  psDB *db, // DB handle
     31                                  const char *concept // Concept name
    3232    );
    33 void p_pmFPAConceptGetF32(pmFPA *fpa,   // The FPA
    34                           pmChip *chip, // The chip
    35                           pmCell *cell, // The cell
    36                           psDB *db,     // DB handle
    37                           psMetadata *concepts, // The concepts MD
    38                           const char *name, // Name of the concept
    39                           const char *comment // Comment for concept
     33void p_pmFPAConceptGetF32(pmFPA *fpa,   // The FPA
     34                          pmChip *chip, // The chip
     35                          pmCell *cell, // The cell
     36                          psDB *db,     // DB handle
     37                          psMetadata *concepts, // The concepts MD
     38                          const char *name, // Name of the concept
     39                          const char *comment // Comment for concept
    4040    );
    41 void p_pmFPAConceptGetF64(pmFPA *fpa,   // The FPA
    42                           pmChip *chip, // The chip
    43                           pmCell *cell, // The cell
    44                           psDB *db,     // DB handle
    45                           psMetadata *concepts, // The concepts MD
    46                           const char *name, // Name of the concept
    47                           const char *comment // Comment for concept
     41void p_pmFPAConceptGetF64(pmFPA *fpa,   // The FPA
     42                          pmChip *chip, // The chip
     43                          pmCell *cell, // The cell
     44                          psDB *db,     // DB handle
     45                          psMetadata *concepts, // The concepts MD
     46                          const char *name, // Name of the concept
     47                          const char *comment // Comment for concept
    4848    );
    49 void p_pmFPAConceptGetS32(pmFPA *fpa,   // The FPA
    50                           pmChip *chip, // The chip
    51                           pmCell *cell, // The cell
    52                           psDB *db,     // DB handle
    53                           psMetadata *concepts, // The concepts MD
    54                           const char *name, // Name of the concept
    55                           const char *comment // Comment for concept
     49void p_pmFPAConceptGetS32(pmFPA *fpa,   // The FPA
     50                          pmChip *chip, // The chip
     51                          pmCell *cell, // The cell
     52                          psDB *db,     // DB handle
     53                          psMetadata *concepts, // The concepts MD
     54                          const char *name, // Name of the concept
     55                          const char *comment // Comment for concept
    5656    );
    5757void p_pmFPAConceptGetString(pmFPA *fpa, // The FPA
    58                              pmChip *chip, // The chip
    59                              pmCell *cell, // The cell
    60                              psDB *db,  // DB handle
    61                              psMetadata *concepts, // The concepts MD
    62                              const char *name, // Name of the concept
    63                              const char *comment // Comment for concept
     58                             pmChip *chip, // The chip
     59                             pmCell *cell, // The cell
     60                             psDB *db,  // DB handle
     61                             psMetadata *concepts, // The concepts MD
     62                             const char *name, // Name of the concept
     63                             const char *comment // Comment for concept
    6464    );
    6565
    6666
     67// Ingest a single cell concept; this is the workhorse for ingesting cell concepts
     68bool p_pmCellIngestConcept(pmFPA *fpa,  // The FPA
     69                           pmChip *chip, // The chip
     70                           pmCell *cell, // The cell
     71                           psDB *db,    // DB handle
     72                           const char *concept // Name of the concept
     73    );
     74
    6775// Ingest concepts for the FPA
    68 void pmFPAIngestConcepts(pmFPA *fpa,    // The FPA
    69                          psDB *db       // DB handle
     76void pmFPAIngestConcepts(pmFPA *fpa,    // The FPA
     77                         psDB *db       // DB handle
    7078    );
    7179// Ingest concepts for the chip
    72 bool pmChipIngestConcepts(pmChip *chip, // The chip
    73                           psDB *db      // DB handle
     80bool pmChipIngestConcepts(pmChip *chip, // The chip
     81                          psDB *db      // DB handle
    7482    );
    7583// Ingest concepts for the cell
    7684bool pmCellIngestConcepts(pmCell *cell, // The cell
    77                           psDB *db      // DB handle
     85                          psDB *db      // DB handle
    7886    );
    7987
    8088// Retrieve a concept
    8189psMetadataItem *pmCellGetConcept(pmCell *cell, // The cell
    82                                 const char *concept // The concept
     90                                const char *concept // The concept
    8391    );
    8492
Note: See TracChangeset for help on using the changeset viewer.