Ignore:
Timestamp:
03/19/24 16:12:21 (4 months ago)
Author:
jderouillat
Message:

Regenerate XIOS2 interfaces, and fix the field' s attribute name conversion_by_NetCDF removing upper-case letters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS2/trunk/src/interface/c_attr/icaxisgroup_attr.cpp

    r1626 r2618  
    169169 
    170170 
     171  void cxios_set_axisgroup_convert_from_factor(axisgroup_Ptr axisgroup_hdl, double convert_from_factor) 
     172  { 
     173    CTimer::get("XIOS").resume(); 
     174    axisgroup_hdl->convert_from_factor.setValue(convert_from_factor); 
     175    CTimer::get("XIOS").suspend(); 
     176  } 
     177 
     178  void cxios_get_axisgroup_convert_from_factor(axisgroup_Ptr axisgroup_hdl, double* convert_from_factor) 
     179  { 
     180    CTimer::get("XIOS").resume(); 
     181    *convert_from_factor = axisgroup_hdl->convert_from_factor.getInheritedValue(); 
     182    CTimer::get("XIOS").suspend(); 
     183  } 
     184 
     185  bool cxios_is_defined_axisgroup_convert_from_factor(axisgroup_Ptr axisgroup_hdl) 
     186  { 
     187     CTimer::get("XIOS").resume(); 
     188     bool isDefined = axisgroup_hdl->convert_from_factor.hasInheritedValue(); 
     189     CTimer::get("XIOS").suspend(); 
     190     return isDefined; 
     191  } 
     192 
     193 
    171194  void cxios_set_axisgroup_data_begin(axisgroup_Ptr axisgroup_hdl, int data_begin) 
    172195  { 
Note: See TracChangeset for help on using the changeset viewer.