Ignore:
Timestamp:
08/24/15 14:53:27 (9 years ago)
Author:
mhnguyen
Message:

Change name of several axis attributes and remove some redundant variable of domain

+) Change name of axis attributes to make them consistent with ones of domain
+) Remove zoom_client_* of domain

Test
+) On Curie
+) All tests pass and are correct

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/interface/c_attr/icdomaingroup_attr.cpp

    r664 r666  
    262262 
    263263 
    264   void cxios_set_domaingroup_data_n_index(domaingroup_Ptr domaingroup_hdl, int data_n_index) 
    265   { 
    266     CTimer::get("XIOS").resume(); 
    267     domaingroup_hdl->data_n_index.setValue(data_n_index); 
    268     CTimer::get("XIOS").suspend(); 
    269   } 
    270  
    271   void cxios_get_domaingroup_data_n_index(domaingroup_Ptr domaingroup_hdl, int* data_n_index) 
    272   { 
    273     CTimer::get("XIOS").resume(); 
    274     *data_n_index = domaingroup_hdl->data_n_index.getInheritedValue(); 
    275     CTimer::get("XIOS").suspend(); 
    276   } 
    277  
    278   bool cxios_is_defined_domaingroup_data_n_index(domaingroup_Ptr domaingroup_hdl) 
    279   { 
    280      CTimer::get("XIOS").resume(); 
    281      bool isDefined = domaingroup_hdl->data_n_index.hasInheritedValue(); 
    282      CTimer::get("XIOS").suspend(); 
    283      return isDefined; 
    284   } 
    285  
    286  
    287264  void cxios_set_domaingroup_data_ni(domaingroup_Ptr domaingroup_hdl, int data_ni) 
    288265  { 
Note: See TracChangeset for help on using the changeset viewer.