GLAST/LAT > DAQ and FSW > FSW > Doxygen Index > CAL_DB / V0-0-1

Constituent: cal_db_pedestals_create     Tag: sun-gcc


Interface   Data Structures   File List   Data Fields   Globals  

cal_db_pedestals_create.c File Reference

Creates the include file used to build the loadable shareable image for the pedestals. More...

#include <stdio.h>
#include <stdlib.h>
#include "cal_import.h"
#include "cal_import_pedestals.h"
#include "cal_db_common_create.h"

Include dependency graph for cal_db_pedestals_create.c:


Data Structures

struct  _Ctl
 The CAL include file creation control structure. More...

Typedefs

typedef _Ctl Ctl
 Typedef for struct _Ctl.

Functions

static void reportUsage (void)
 Brief explanation of the test creation usage.
static void full_prepare (unsigned int *export, const float pedestals[16][8][12][4][2])
 Prepares the imported data for export.
static void idealized_prepare (unsigned int *export, const float pedestals[4][2])
 Prepares the imported data for export.
static int writeFile (FILE *hfile, const char *hname, const char *package, const char *constituent, const char *version, CAL_DB_STYLE_K style, const char *origin_name, const char *style_name, unsigned int key, const unsigned int *export)
 Files and writes the output include file.
static int fillCtl (Ctl *ctl, int argc, char *const argv[])
 Examines the command line parameters and fills the include file creation control structure.
static void fillPedestals (unsigned short int *pedestals, const unsigned int *exports)
 Fills one layers worth of pedestals.
static int writeLayer (FILE *hfile, int lyr, const unsigned short int v[24])
 Write one layers worth of constants.
int CalDbPedestalsCreate (int argc, char *const argv[], const CalImportPedestals *import)
 Driver program to create CAL calibration include file.

Detailed Description

Creates the include file used to build the loadable shareable image for the pedestals.

Author:
JJRussell - russell@slac.stanford.edu
   CVS $Id: cal_db_pedestals_create.c,v 1.1.1.1 2005/08/01 20:52:48 russell Exp $

This program accepts a cal_pedestals.h file and converts it to a representation that is used to transform ADC values to Mev. This portion handles only the pedestal part of the linear transformation. The gains are done similarly, but by a different program.

The mechanism is fairly clunky, belonging to that ilk of programs whose mission is to write another program. In this case, the pedestal data is written out as data to a C data structure, called the schema. The resulting file is then compiled and built into a shareable image.

In addition to holding the data values, this schema also holds pointers to routines that are used to access the data. This tactic allows the interface to be stable, but effectively hides the internal representation of the data. Because the accessor routine's job is act as a go-between between the caller and the internal data, it must

  1. Present a well-defined and stable interface to the user
  2. Be privy to the detailed layout of the data

It is this last point that drives the design to include the implementation of these routines at the same time the data is defined. That keeps the two in lock step.


Typedef Documentation

Ctl
 

Typedef for struct _Ctl.

Contains all the parameters controlling the creation and content of the test include file.


Function Documentation

int CalDbPedestalsCreate int  argc,
char *const   argv[],
const CalImportPedestals import
 

Driver program to create CAL calibration include file.

Returns:
Status, if 0, then successfully created the output file
Parameters:
argc The count of input arguments
argv The vector of input arguments
import The imported database

static int fillCtl Ctl ctl,
int  argc,
char *const   argv[]
[static]
 

Examines the command line parameters and fills the include file creation control structure.

Parameters:
ctl The parameter control block.
argc The number of command line parameters.
argv The array of pointers to the command line parameters.
Return values:
0,Everything is okay.
-1,Incorrect command usage. Usually this means that the input file name was absent.

static void fillPedestals unsigned short int *  pedestals,
const unsigned int *  exports
[static]
 

Fills one layers worth of pedestals.

Parameters:
pedestals The output gain array
exports The export data

static void full_prepare unsigned int *  export,
const float  pedestals[16][8][12][4][2]
[static]
 

Prepares the imported data for export.

Parameters:
export Filled with the data to be exported
pedestals The imported pedestal data

static void idealized_prepare unsigned int *  export,
const float  pedestals[4][2]
[static]
 

Prepares the imported data for export.

Parameters:
export Filled with the data to be exported
pedestals The imported pedestal data

static int writeFile FILE *  hfile,
const char *  hname,
const char *  package,
const char *  constituent,
const char *  version,
CAL_DB_STYLE_K  style,
const char *  origin_name,
const char *  style_name,
unsigned int  key,
const unsigned int *  export
[static]
 

Files and writes the output include file.

Returns:
Status
Parameters:
hfile The include file handle
hname The name of the output file
package The package name
constituent The constituent name
version The schema version number
style The style (CAL_DB_STYLE_K_FULL, CAL_DB_STYLE_K_IDEALIZED)
origin_name The name of the originating data source ("GLEAM", "LAT", etc)
style_name The style name ("FULL", "IDEALIZED")
key The database's identifying key
export The constants to export

static int writeLayer FILE *  hfile,
int  lyr,
const unsigned short int  v[24]
[static]
 

Write one layers worth of constants.

Parameters:
hfile The include file handle
lyr The layer number being written
v The 24 constants (12 columns * 2 logends) to write


Generated on Fri Dec 9 20:27:37 2005 by  doxygen 1.4.4