#include <glib.h>#include <sed/sed_sedflux.h>Go to the source code of this file.
Functions | |
| int | main (int argc, char *argv[]) |
Variables | |
| GOptionEntry | entries [] |
| int main | ( | int | argc, | |
| char * | argv[] | |||
| ) |
Definition at line 32 of file sedflux-make-sequence.c.
References eh_dbl_grid_set(), eh_fopen_error(), eh_fprint_version_info(), eh_fwrite_dbl_swap, eh_fwrite_int32_swap, eh_grid_data_start(), eh_grid_destroy(), eh_grid_new, eh_set_verbosity_level(), and entries.
| GOptionEntry entries[] |
Initial value:
{
{ "out-file" , 'o' , 0 , G_OPTION_ARG_FILENAME , &out_file , "Output sequence file" , "<file>" } ,
{ "val" , 's' , 0 , G_OPTION_ARG_DOUBLE , &val , "Sequence value" , "X" } ,
{ "time" , 't' , 0 , G_OPTION_ARG_DOUBLE , &time_key , "Time value of the grid" , "TIME" } ,
{ "nx" , 'x' , 0 , G_OPTION_ARG_INT , &n_x , "Number of cell in x-dimension" , "NX" } ,
{ "ny" , 'y' , 0 , G_OPTION_ARG_INT , &n_y , "Number of cell in y-dimension" , "NY" } ,
{ "big-endian" , 'b' , 0 , G_OPTION_ARG_NONE , &big_endian , "Byte order is big endian" , NULL } ,
{ "little-endian" , 'l' , 0 , G_OPTION_ARG_NONE , &little_endian , "Byte order is little endian" , NULL } ,
{ "append" , 'a' , 0 , G_OPTION_ARG_NONE , &append , "Append a grid to the sequence" , NULL } ,
{ "verbose" , 'V' , 0 , G_OPTION_ARG_INT , &verbosity , "Verbosity level" , "n" } ,
{ "version" , 'v' , 0 , G_OPTION_ARG_NONE , &version , "Version number" , NULL } ,
{ "debug" , 'd' , 0 , G_OPTION_ARG_NONE , &debug , "Write debugging messages" , NULL } ,
{ NULL }
}
Definition at line 16 of file sedflux-make-sequence.c.
1.5.2