source: XIOS/trunk/src/config/file_attribute.conf @ 517

Last change on this file since 517 was 517, checked in by rlacroix, 9 years ago

Add a new attribute to the file definition so that the output format can be controlled.

Currently the supported formats are "netcdf4" and "netcdf4_classic". The "format" attribute is optional. The "netcdf4" format will be used when no format is explicitly defined. Since "netcdf4" is the format which was previously used by XIOS, existing configuration files will not be affected by this change.

If "netcdf4_classic" is used, the output file(s) will be created using the classic NetCDF format. This format can be used with the attribute "type" set to "one_file" if the NetCDF4 library was compiled with Parallel NetCDF support (--enable-pnetcdf).

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 593 bytes
Line 
1DECLARE_ATTRIBUTE(StdString, name)
2DECLARE_ATTRIBUTE(StdString, description)
3
4DECLARE_ATTRIBUTE(StdString, name_suffix)
5DECLARE_ATTRIBUTE(int, min_digits )
6
7DECLARE_ATTRIBUTE(StdString, output_freq)
8DECLARE_ATTRIBUTE(int,       output_level)
9DECLARE_ATTRIBUTE(StdString, sync_freq)
10DECLARE_ATTRIBUTE(StdString, split_freq)
11DECLARE_ATTRIBUTE(StdString, split_freq_format)
12DECLARE_ATTRIBUTE(bool,      enabled)
13DECLARE_ENUM2(type,one_file,multiple_file)
14DECLARE_ENUM2(format, netcdf4, netcdf4_classic)
15DECLARE_ATTRIBUTE(StdString,      par_access)
16
17// DECLARE_ATTRIBUTE_DEF(bool, enabled, true)
Note: See TracBrowser for help on using the repository browser.