Ignore:
Timestamp:
07/01/16 16:55:33 (8 years ago)
Author:
oabramkina
Message:

Sequential version for UGRID norms. File attribute "convention" has been added with two possible values "CF" and "UGRID". The default value is "CF".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/node/domain.cpp

    r847 r878  
    3535      , lonvalue_client(), latvalue_client(), bounds_lon_client(), bounds_lat_client() 
    3636      , isRedistributed_(false) 
    37    { /* Ne rien faire de plus */ } 
     37   { 
     38           mesh = new CMesh(); 
     39        } 
    3840 
    3941   CDomain::CDomain(const StdString & id) 
     
    4446      , lonvalue_client(), latvalue_client(), bounds_lon_client(), bounds_lat_client() 
    4547      , isRedistributed_(false) 
    46    { /* Ne rien faire de plus */ } 
     48   { 
     49           mesh = new CMesh(); 
     50        } 
    4751 
    4852   CDomain::~CDomain(void) 
    4953   { 
     54           delete mesh; 
    5055   } 
    5156 
     
    7378   } 
    7479 
    75    //---------------------------------------------------------------- 
    76  
     80   
    7781   const std::vector<int>& CDomain::getIndexesToWrite(void) const 
    7882   { 
     
    202206   } 
    203207 
    204    //---------------------------------------------------------------- 
    205  
    206208   void CDomain::addRelFile(const StdString & filename) 
    207209   { 
    208210      this->relFiles.insert(filename); 
    209211   } 
    210  
     212   
    211213   void CDomain::addRelFileCompressed(const StdString& filename) 
    212214   { 
    213215      this->relFilesCompressed.insert(filename); 
    214216   } 
    215  
    216217 
    217218   StdString CDomain::GetName(void)   { return (StdString("domain")); } 
Note: See TracChangeset for help on using the changeset viewer.