source: trunk/WRF.COMMON/WRFV2/tools/protos.h

Last change on this file was 11, checked in by aslmd, 14 years ago

spiga@svn-planeto:ajoute le modele meso-echelle martien

File size: 4.4 KB
Line 
1#ifndef PROTOS_H
2#include "registry.h"
3#include "data.h"
4
5int init_dim_table()   ;
6int make_lower( char * s1 ) ;
7int reg_parse( FILE * infile ) ;
8int set_dim_len ( char * dimspec , node_t * dim_entry ) ;
9int set_dim_order ( char * dimorder , node_t * dim_entry ) ;
10int set_dim_orient ( char * dimorient , node_t * dim_entry ) ;
11int add_node_to_end ( node_t * node , node_t ** list ) ;
12int add_node_to_end_4d ( node_t * node , node_t ** list ) ;
13int init_type_table() ;
14int set_state_type ( char * typename , node_t * node ) ;
15int set_state_dims ( char * dims , node_t * node ) ;
16int gen_state_struct ( char * fname ) ;
17
18#if 0
19int show_node( node_t * p ) ;
20int show_node1( node_t * p, int indent ) ;
21int show_nodelist( node_t * p ) ;
22int show_nodelist1( node_t * p , int indent ) ;
23#endif
24
25int gen_state_struct ( char * fname ) ;
26int gen_decls ( FILE * fp , char * corename , node_t * node , int sw_ranges, int sw_point , int mask , int layer ) ;
27int gen_state_subtypes ( char * fname ) ;
28int gen_state_subtypes1 ( FILE * fp , node_t * node , int sw_ranges, int sw_point , int mask ) ;
29int print_warning( FILE * fp , char * fname ) ;
30int close_the_file( FILE * fp  ) ;
31int make_entries_uniq ( char * fname ) ;
32int add_warning ( char * fname ) ;
33
34node_t * get_type_entry ( char * typename ) ;
35node_t * get_rconfig_entry( char * name ) ;
36node_t * get_entry ( char * name , node_t * node ) ;
37node_t * get_entry_r ( char * name , char * use , node_t * node ) ;
38node_t * get_dim_entry( char c ) ;
39node_t * new_node ( int kind ) ;
40
41node_t * get_4d_entry ( char * name ) ;
42node_t * get_dimnode_for_coord ( node_t * node , int coord_axis ) ;
43int      get_index_for_coord ( node_t * node , int coord_axis ) ;
44
45char * my_strtok( char * s1 ) ;
46char * strtok_rentr( char * s1 , char * s2, char ** tokpos ) ;
47
48
49char * field_name( char * tmp, node_t * p , int tag ) ;
50char * dimension_with_colons( char * pre, char * tmp, node_t * p, char * post) ;
51char * dimension_with_ones( char * pre, char * tmp, node_t * p, char * post) ;
52char * dimension_with_ranges( char * ref , char * pre, char * tmp, node_t * p, char * post, char * nlstructname) ;
53char * index_with_firstelem( char * pre , char * dref , char * tmp , node_t * p , char * post ) ;
54
55char * declare_array_as_pointer( char * tmp, node_t * p ) ;
56char * field_type( char * tmp , node_t * p ) ;
57
58int init_core_table() ;
59int add_core_name ( char * name ) ;
60int get_num_cores() ;
61char * get_core_name ( char * name ) ;
62char * get_corename_i(int i) ;
63
64/* For typedef history -ajb */
65int init_typedef_history() ;
66int add_typedef_name ( char * name ) ;
67int get_num_typedefs() ;
68char * get_typedef_name ( char * name ) ;
69char * get_typename_i(int i) ;
70
71int gen_alloc ( char * dirname ) ;
72int gen_alloc1 ( char * dirname , char * corename ) ;
73int gen_alloc2 ( FILE * fp , char * structname , char * corename , node_t * node ) ;
74
75int gen_module_state_description ( char * dirname ) ;
76int gen_module_state_description1 ( FILE * fp , node_t * node ) ;
77
78int gen_scalar_indices ( char * dirname ) ;
79int gen_scalar_indices1 ( FILE * fp ) ;
80
81int gen_actual_args ( char * dirname ) ;
82int gen_dummy_args ( char * dirname ) ;
83int gen_dummy_decls ( char * dn ) ;
84int gen_args ( char * dirname , char * corename , int sw ) ;
85int gen_args1 ( FILE * fp , char * outstr, char * structname , char * corename , node_t * node , int *linelen , int sw , int deep ) ;
86
87int gen_scalar_derefs ( char * dirname ) ;
88int scalar_derefs ( char * dirname , char * corename ) ;
89int scalar_derefs1 ( FILE * fp , char * corename , node_t * node, int direction ) ;
90
91int set_mark ( int val , node_t * lst ) ;
92int set_mark_4d ( int val , node_t * lst ) ;
93
94int gen_i1_decls ( char * dn ) ;
95int gen_get_nl_config ( char * dirname ) ;
96
97int gen_config_assigns ( char * dirname ) ;
98int gen_config_reads ( char * dirname ) ;
99
100char * set_mem_order( node_t * node , char * str , int n  ) ;
101
102int gen_wrf_io ( char * dirname ) ;
103int set_dim_strs ( node_t *node , char ddim[3][2][NAMELEN], char mdim[3][2][NAMELEN], char pdim[3][2][NAMELEN] , char * prepend, int sw_allow_stagger ) ;
104int gen_wrf_io2 ( FILE * fp , char * fname , char * structname , char * fourdname , node_t * node , int io_mask , int sw_io ) ;
105
106int gen_namelist_defines ( char * dirname , int sw_dimension ) ;
107int gen_namelist_defaults ( char * dirname ) ;
108
109int gen_model_data_ord ( char * dirname ) ;
110
111int get_elem ( char * structname , char * nlstructname , char * tx , int i , node_t * p , int first_last ) ;
112
113#define PROTOS_H
114#endif
115
Note: See TracBrowser for help on using the repository browser.