Salome HOME
Copyright update 2021
[tools/medcoupling.git] / src / INTERP_KERNEL / TargetIntersector.hxx
index b580ca9126356b7b2a273fe91af96051400b35ff..890a9198be26e25674abc6c24386d8869cd80054 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2015  CEA/DEN, EDF R&D
+// Copyright (C) 2007-2021  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
@@ -38,21 +38,16 @@ namespace INTERP_KERNEL
   public:
     typedef typename MyMeshType::MyConnType ConnType;
   public:
-    /*!
-     * \addtogroup InterpKerGrpIntPlan
-     * @{
-     */
     /*!
      * Tool for cell intersection, result is always positive.
-     * @param icellT id of cell in target mesh in \b C \b mode.
-     * @param icellsS ids of cells in source mesh in \b C \b mode.
+     * @param targetCell id of cell in target mesh in \b C \b mode.
+     * @param srcCells ids of cells in source mesh in \b C \b mode.
      * @param res is an IN/OUT parameter that represents the icellTth row in final matrix, fed with at most icellsS elements. 
      */
     virtual void intersectCells(ConnType targetCell, const std::vector<ConnType>& srcCells, MyMatrix& res) = 0;
-    //! @}
-    //Tool for cell filtering
-    virtual int getNumberOfRowsOfResMatrix() const = 0;
-    virtual int getNumberOfColsOfResMatrix() const = 0;
+
+    virtual ConnType getNumberOfRowsOfResMatrix() const = 0;
+    virtual ConnType getNumberOfColsOfResMatrix() const = 0;
     virtual ~TargetIntersector() { }
   };
 }