]> SALOME platform Git repositories - tools/medcoupling.git/blobdiff - src/ParaMEDMEM/ParaGRID.hxx
Salome HOME
refactor!: remove adm_local/ directory
[tools/medcoupling.git] / src / ParaMEDMEM / ParaGRID.hxx
old mode 100755 (executable)
new mode 100644 (file)
index 44b372f..3bc60af
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2014  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2024  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 
 #include <vector>
 
-namespace ParaMEDMEM
+namespace MEDCoupling
 {
   class Topology;
   class BlockTopology;
   class MEDCouplingCMesh;
 
+  /*!
+   * This class
+   * Equivalent of a ParaMESH for a structured mesh
+   */
   class ParaGRID
   {
   public:
-    ParaGRID(MEDCouplingCMesh* global_grid, Topology* topology) throw(INTERP_KERNEL::Exception);
+    ParaGRID(MEDCouplingCMesh* global_grid, Topology* topology)
     BlockTopology * getBlockTopology() const { return _block_topology; }
     virtual ~ParaGRID();
     MEDCouplingCMesh* getGrid() const { return _grid; }
   private:
     MEDCouplingCMesh* _grid;
     // structured grid topology
-    ParaMEDMEM::BlockTopology* _block_topology;
+    MEDCoupling::BlockTopology* _block_topology;
     // stores the x,y,z axes on the global grid
     std::vector<std::vector<double> > _global_axis;
-    //id of the local grid
-    int _my_domain_id;
   };
 }