Salome HOME
MEDCoupling API renaming - stage #2
[tools/medcoupling.git] / src / ParaMEDMEM / ProcessorGroup.hxx
index 344704a9f77e4eebafca6f53f8372ca7b109b434..327bdf7e89b162917d225ff456dde710bb3b13c1 100644 (file)
 
 #include <set>
 
-namespace ParaMEDMEM
+namespace MEDCoupling
 {
+  /*!
+   * Abstract class defining a group of processors (computation nodes) in a parallel run of a code.
+   *
+   * See the non-abstract child \ref MPIProcessorGroup-det "MPIProcessorGroup"
+   */
   class ProcessorGroup
   {
   public:
@@ -39,7 +44,7 @@ namespace ParaMEDMEM
       _comm_interface(other.getCommInterface()),_proc_ids(other._proc_ids) { }
     ProcessorGroup (const CommInterface& interface, int start, int end);
     virtual ~ProcessorGroup() { }
-    virtual ProcessorGroup *deepCpy() const = 0;
+    virtual ProcessorGroup *deepCopy() const = 0;
     virtual ProcessorGroup* fuse (const ProcessorGroup&) const = 0;
     virtual void intersect (ProcessorGroup&) = 0;
     bool contains(int rank) const { return _proc_ids.find(rank)!=_proc_ids.end(); }