Ignore:
Timestamp:
05/15/17 16:58:35 (7 years ago)
Author:
mhnguyen
Message:

Correcting a minor bug on writting unstructured grid

+) Correct the mapping between received data and written data.
+) Clean some redundant codes

Test
+) On Curie
+) Writing on unstructured grid works correctly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/dev/dev_olga/src/node/file.cpp

    r1130 r1132  
    974974 
    975975   /*! 
     976   \brief Send a message to create a variable group on server side 
     977   \param[in] id String identity of variable group that will be created on server 
     978   \param [in] client client to which we will send this adding action 
     979   */ 
     980   void CFile::sendAddVariableGroup(const string& id, CContextClient* client) 
     981   { 
     982      sendAddItem(id, (int)EVENT_ID_ADD_VARIABLE_GROUP, client); 
     983   } 
     984 
     985   /*! 
    976986   \brief Send a message to create a variable on server side 
    977987      A variable always belongs to a variable group 
     
    983993   } 
    984994 
     995   /* 
     996     Send message to add a variable into a file within a certain client 
     997     \param [in] id String identity of a variable 
     998     \param [in] client client to which we will send this adding action 
     999   */ 
    9851000   void CFile::sendAddVariable(const string& id, CContextClient* client) 
    9861001   { 
Note: See TracChangeset for help on using the changeset viewer.