X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FParaMEDMEMTest%2FParaMEDMEMTestMPI2_1.cxx;h=b282c94bfd71b2a311d7393e7b3c301a01589618;hb=d426837c21eca9b56b9b8a7a7434aaf3969c8977;hp=ba9b2c6340d8a4311ab81c6e096de1d6bdea6615;hpb=f1a947b32a36d8dc8e3079b25305bb50e8cb59a0;p=tools%2Fmedcoupling.git diff --git a/src/ParaMEDMEMTest/ParaMEDMEMTestMPI2_1.cxx b/src/ParaMEDMEMTest/ParaMEDMEMTestMPI2_1.cxx index ba9b2c634..b282c94bf 100644 --- a/src/ParaMEDMEMTest/ParaMEDMEMTestMPI2_1.cxx +++ b/src/ParaMEDMEMTest/ParaMEDMEMTestMPI2_1.cxx @@ -1,9 +1,9 @@ -// Copyright (C) 2007-2013 CEA/DEN, EDF R&D +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either -// version 2.1 of the License. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -41,7 +41,7 @@ public: void testBasicMPI2_1(); }; -using namespace ParaMEDMEM; +using namespace MEDCoupling; void MPI2ParaMEDMEMTest::testBasicMPI2_1() { @@ -49,11 +49,11 @@ void MPI2ParaMEDMEMTest::testBasicMPI2_1() MPI_Comm gcom; std::string service = "SERVICE"; std::ostringstream meshfilename, meshname; - ParaMEDMEM::ParaMESH *paramesh=0; - ParaMEDMEM::MEDCouplingUMesh *mesh; - ParaMEDMEM::ParaFIELD *parafield=0; - ParaMEDMEM::CommInterface *interface; - ParaMEDMEM::MPIProcessorGroup *source, *target; + MEDCoupling::ParaMESH *paramesh=0; + MEDCoupling::MEDCouplingUMesh *mesh; + MEDCoupling::ParaFIELD *parafield=0; + MEDCoupling::CommInterface *interface; + MEDCoupling::MPIProcessorGroup *source, *target; MPI_Comm_size( MPI_COMM_WORLD, &lsize ); MPI_Comm_rank( MPI_COMM_WORLD, &lrank ); @@ -73,9 +73,9 @@ void MPI2ParaMEDMEMTest::testBasicMPI2_1() CPPUNIT_ASSERT(false); return; } - interface = new ParaMEDMEM::CommInterface; - source = new ParaMEDMEM::MPIProcessorGroup(*interface,0,lsize-1,gcom); - target = new ParaMEDMEM::MPIProcessorGroup(*interface,lsize,gsize-1,gcom); + interface = new MEDCoupling::CommInterface; + source = new MEDCoupling::MPIProcessorGroup(*interface,0,lsize-1,gcom); + target = new MEDCoupling::MPIProcessorGroup(*interface,lsize,gsize-1,gcom); const double sourceCoordsAll[2][8]={{0.4,0.5,0.4,1.5,1.6,1.5,1.6,0.5}, {0.3,-0.5,1.6,-0.5,1.6,-1.5,0.3,-1.5}}; @@ -94,13 +94,13 @@ void MPI2ParaMEDMEMTest::testBasicMPI2_1() mesh->setCoords(myCoords); myCoords->decrRef(); paramesh=new ParaMESH(mesh,*source,"source mesh"); - ParaMEDMEM::ComponentTopology comptopo; + MEDCoupling::ComponentTopology comptopo; parafield = new ParaFIELD(ON_CELLS,NO_TIME,paramesh, comptopo); double *value=parafield->getField()->getArray()->getPointer(); value[0]=34+13*((double)grank); - ParaMEDMEM::InterpKernelDEC dec(*source,*target); - parafield->getField()->setNature(ConservativeVolumic); + MEDCoupling::InterpKernelDEC dec(*source,*target); + parafield->getField()->setNature(IntensiveMaximum); dec.setMethod("P0");