Changeset 508 for XIOS/branchs/xios-1.0


Ignore:
Timestamp:
10/24/14 17:09:55 (10 years ago)
Author:
mhnguyen
Message:

Fixing bug with netcdf_seq

+) Adding include file for exception
+) Correcting call inside a namespace

Test
+) On local
+) Passed

Location:
XIOS/branchs/xios-1.0/src/output
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • XIOS/branchs/xios-1.0/src/output/netCdfInterface.cpp

    r501 r508  
    4949   int CNetCdfInterface::createPar(const StdString& fileName, int cMode, MPI_Comm comm, MPI_Info info, int& ncId) 
    5050   { 
    51      int status = ::nc_create_par((fileName.c_str()), cMode, comm, info, &ncId); 
     51     int status = xios::nc_create_par((fileName.c_str()), cMode, comm, info, &ncId); 
    5252     if (NC_NOERR != status) 
    5353     { 
     
    102102   int CNetCdfInterface::openPar(const StdString& fileName, int oMode, MPI_Comm comm, MPI_Info info, int& ncId) 
    103103   { 
    104      int status = ::nc_open_par((fileName.c_str()), oMode, comm, info, &ncId); 
     104     int status = xios::nc_open_par((fileName.c_str()), oMode, comm, info, &ncId); 
    105105     if (NC_NOERR != status) 
    106106     { 
  • XIOS/branchs/xios-1.0/src/output/netCdfInterface.hpp

    r501 r508  
    1212#include "xmlioserver_spl.hpp" 
    1313#include "mpi.hpp" 
     14#include "exception.hpp" 
    1415#include "netcdf.hpp" 
    1516 
Note: See TracChangeset for help on using the changeset viewer.