Ignore:
Timestamp:
03/22/11 16:31:10 (13 years ago)
Author:
hozdoba
Message:
 
Location:
XMLIO_V2/dev/dev_rv/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_V2/dev/dev_rv/src/manager/mpi_manager.hpp

    r141 r142  
    1717   { 
    1818      /// ////////////////////// Déclarations ////////////////////// /// 
    19       typedef int     MPIComm; 
    20       typedef int    MPIGroup; 
    21       typedef int  MPIRequest; 
    22       typedef int  *MPIStatus; 
    23       typedef int MPIDataType; 
     19      typedef MPI_Fint     MPIComm; 
     20      typedef MPI_Fint    MPIGroup; 
     21      typedef MPI_Fint  MPIRequest; 
     22      typedef MPI_Fint  *MPIStatus; 
     23      typedef MPI_Fint MPIDataType; 
    2424 
    2525      class CMPIManager 
  • XMLIO_V2/dev/dev_rv/src/output/nc4_data_output.cpp

    r141 r142  
    3939 
    4040      CNc4DataOutput::CNc4DataOutput 
    41          (const StdString & filename, bool exist, bool multigroup, comm::MPIComm comm_server) 
     41         (const StdString & filename, bool exist, bool multigroup, comm::MPIComm comm_server, bool) 
    4242            : SuperClass() 
    4343            , SuperClassWriter(filename, exist, &comm_server) 
  • XMLIO_V2/dev/dev_rv/src/output/nc4_data_output.hpp

    r141 r142  
    2929               (const StdString & filename, bool exist, bool multigroup, MPI_Comm comm_server); 
    3030            CNc4DataOutput 
    31                (const StdString & filename, bool exist, bool multigroup, comm::MPIComm comm_server); 
     31               (const StdString & filename, bool exist, bool multigroup, comm::MPIComm comm_server, bool); 
    3232 
    3333            CNc4DataOutput(const CNc4DataOutput & dataoutput);       // Not implemented. 
  • XMLIO_V2/dev/dev_rv/src/output/onetcdf4.cpp

    r141 r142  
    1616 
    1717      CONetCDF4::CONetCDF4 
    18          (const StdString & filename, bool exist, const comm::MPIComm * comm) 
     18         (const StdString & filename, bool exist, const comm::MPIComm * comm, bool) 
    1919         : path() 
    2020      { 
     
    2525         else 
    2626         { 
    27             MPI_Comm comm_c = MPI_Comm_f2c(*comm); 
     27            MPI_Comm comm_c = (MPI_Comm)MPI_Comm_f2c(*comm); 
    2828            this->initialize(filename, exist, &comm_c); 
    2929         } 
  • XMLIO_V2/dev/dev_rv/src/output/onetcdf4.hpp

    r141 r142  
    3232            /// Constructeurs /// 
    3333            CONetCDF4(const StdString & filename, bool exist, const MPI_Comm * comm = NULL); 
    34             CONetCDF4(const StdString & filename, bool exist, const comm::MPIComm * comm); 
     34            CONetCDF4(const StdString & filename, bool exist, const comm::MPIComm * comm, bool); 
    3535 
    3636            CONetCDF4(const CONetCDF4 & onetcdf4);       // Not implemented. 
Note: See TracChangeset for help on using the changeset viewer.