New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
WorkWithParameterlist.c in branches/2014/dev_r4765_CNRS_agrif/NEMOGCM/EXTERNAL/AGRIF/LIB – NEMO

source: branches/2014/dev_r4765_CNRS_agrif/NEMOGCM/EXTERNAL/AGRIF/LIB/WorkWithParameterlist.c @ 4779

Last change on this file since 4779 was 4779, checked in by rblod, 10 years ago

Update AGRIF internal routines and conv on branch dev_r4765_CNRS_agrif

  • Property svn:keywords set to Id
File size: 5.3 KB
Line 
1/******************************************************************************/
2/*                                                                            */
3/*     CONV (converter) for Agrif (Adaptive Grid Refinement In Fortran)       */
4/*                                                                            */
5/* Copyright or   or Copr. Laurent Debreu (Laurent.Debreu@imag.fr)            */
6/*                        Cyril Mazauric (Cyril_Mazauric@yahoo.fr)            */
7/* This software is governed by the CeCILL-C license under French law and     */
8/* abiding by the rules of distribution of free software.  You can  use,      */
9/* modify and/ or redistribute the software under the terms of the CeCILL-C   */
10/* license as circulated by CEA, CNRS and INRIA at the following URL          */
11/* "http://www.cecill.info".                                                  */
12/*                                                                            */
13/* As a counterpart to the access to the source code and  rights to copy,     */
14/* modify and redistribute granted by the license, users are provided only    */
15/* with a limited warranty  and the software's author,  the holder of the     */
16/* economic rights,  and the successive licensors  have only  limited         */
17/* liability.                                                                 */
18/*                                                                            */
19/* In this respect, the user's attention is drawn to the risks associated     */
20/* with loading,  using,  modifying and/or developing or reproducing the      */
21/* software by the user in light of its specific status of free software,     */
22/* that may mean  that it is complicated to manipulate,  and  that  also      */
23/* therefore means  that it is reserved for developers  and  experienced      */
24/* professionals having in-depth computer knowledge. Users are therefore      */
25/* encouraged to load and test the software's suitability as regards their    */
26/* requirements in conditions enabling the security of their systems and/or   */
27/* data to be ensured and,  more generally, to use and operate it in the      */
28/* same conditions as regards security.                                       */
29/*                                                                            */
30/* The fact that you are presently reading this means that you have had       */
31/* knowledge of the CeCILL-C license and that you accept its terms.           */
32/******************************************************************************/
33/* version 1.7                                                                */
34/******************************************************************************/
35#include <stdio.h>
36#include <stdlib.h>
37#include <string.h>
38#include "decl.h"
39
40/******************************************************************************/
41/*                       Add_GlobalParameter_Var_1                            */
42/******************************************************************************/
43/*  This subroutines is used to add the variable defined in common in the     */
44/******************************************************************************/
45/*                                                                            */
46/******************************************************************************/
47void Add_GlobalParameter_Var_1(listvar *listin)
48{
49    if ( VariableIsParameter )
50        List_GlobalParameter_Var =  AddListvarToListvar(listin, List_GlobalParameter_Var, 1);
51   }
52}
53
54/******************************************************************************/
55/*                       Add_Parameter_Var_1                                  */
56/******************************************************************************/
57/*  This subroutines is used to add the variable defined in common in the     */
58/******************************************************************************/
59/*                                                                            */
60/******************************************************************************/
61void Add_Parameter_Var_1(listvar *listin)
62{
63    listvar *parcours;
64
65    if ( !VariableIsParameter )    return;
66
67    if ( List_Parameter_Var == NULL )
68    {
69        List_Parameter_Var = listin;
70    }
71    else
72    {
73        parcours = List_Parameter_Var;
74        while ( parcours->suiv )
75            parcours = parcours->suiv;
76        parcours->suiv = listin;
77    }
78}
79
80/******************************************************************************/
81/*                       Add_Dimension_Var_1                                  */
82/******************************************************************************/
83/*  This subroutines is used to add the variable defined in common in the     */
84/******************************************************************************/
85/*                                                                            */
86/******************************************************************************/
87void Add_Dimension_Var_1(listvar *listin)
88{
89   listvar *parcours;
90
91    if ( List_Dimension_Var == NULL )
92    {
93        List_Dimension_Var = listin;
94    }
95    else
96    {
97        parcours = List_Dimension_Var;
98        while (parcours->suiv)
99            parcours = parcours->suiv;
100        parcours->suiv = listin;
101    }
102}
Note: See TracBrowser for help on using the repository browser.