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.
Changeset 530 for trunk/AGRIF/LIB/WorkWithlistdatavariable.c – NEMO

Ignore:
Timestamp:
2006-10-17T17:36:11+02:00 (18 years ago)
Author:
opalod
Message:

RB: update of the conv for IOM and NEC MPI library

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/AGRIF/LIB/WorkWithlistdatavariable.c

    r396 r530  
    33/*     CONV (converter) for Agrif (Adaptive Grid Refinement In Fortran)       */ 
    44/*                                                                            */ 
    5 /*     Copyright (C) 2005 Laurent Debreu (Laurent.Debreu@imag.fr)             */ 
     5/* Copyright or © or Copr. Laurent Debreu (Laurent.Debreu@imag.fr)            */ 
    66/*                        Cyril Mazauric (Cyril.Mazauric@imag.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".                                                  */ 
    712/*                                                                            */ 
    8 /*     This program is free software; you can redistribute it and/or modify   */ 
    9 /*    it                                                                      */ 
     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.                                                                 */ 
    1018/*                                                                            */ 
    11 /*    This program is distributed in the hope that it will be useful,         */ 
    12 /*     but WITHOUT ANY WARRANTY; without even the implied warranty of         */ 
    13 /*     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          */ 
    14 /*    GNU General Public License for more details.                            */ 
     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.                                       */ 
    1529/*                                                                            */ 
     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.0                                                                */ 
    1634/******************************************************************************/ 
    1735#include <stdio.h> 
     
    2038#include "decl.h" 
    2139/******************************************************************************/ 
    22 /*                          DATA_n_COMPLETEDATALIST                           */ 
     40/*                          COMPLETEDATALIST                                  */ 
    2341/******************************************************************************/ 
    2442/* This subroutine is used to add a record to listdatavariable                */ 
     
    3048/*                                                                            */ 
    3149/******************************************************************************/ 
    32 void DATA_n_CompleteDataList (char *name,char *values) 
     50void CompleteDataList (char *name,char *values) 
    3351{ 
    3452  listvar *newvar; 
     
    5371 
    5472/******************************************************************************/ 
    55 /*                    DATA_1_COMPLETEGLOBLISTEWITHDATALIST                    */ 
     73/*                    COMPLETEGLOBLISTEWITHDATALIST_1                         */ 
    5674/******************************************************************************/ 
    5775/* This subroutine is used to complete the variable initialisation            */ 
     
    7593/*                                                                            */ 
    7694/******************************************************************************/ 
    77 void DATA_1_CompleteGlobListeWithDatalist () 
     95void CompleteGlobListeWithDatalist_1() 
    7896{ 
    7997  listvar *newvar; 
    8098  listvar *globlistetmp; 
    8199  int out; 
    82    
     100 
     101  if ( firstpass == 1 ) 
     102  {   
    83103  /* We are looking for each variable of the listdatavariable where           */ 
    84104  /* are they located in the globliste                                        */ 
     
    119139     newvar = newvar->suiv; 
    120140  } 
     141  } 
    121142} 
    122143 
Note: See TracChangeset for help on using the changeset viewer.