]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
*** empty log message ***
authorageay <ageay>
Fri, 23 Jul 2010 17:21:54 +0000 (17:21 +0000)
committerageay <ageay>
Fri, 23 Jul 2010 17:21:54 +0000 (17:21 +0000)
src/MEDCoupling/MEDCouplingField.cxx
src/MEDCoupling/MEDCouplingTimeDiscretization.hxx

index d64a03822c882d3a51e892ad759343e0c97ae9a8..11af98a4bfc3faa4b5f329ec68dc4fcbb507b9ce 100644 (file)
@@ -98,7 +98,10 @@ MEDCouplingField::MEDCouplingField(const MEDCouplingField& other):_name(other._n
     }
 }
 
-
+/*!
+ * This method returns a submesh of 'mesh' instance constituting cell ids contained in array defined as an interval [start;end).
+ * @ param di is an array returned that specifies entity ids (nodes, cells ids...) in mesh 'mesh' of entity in returned submesh.
+ */
 MEDCouplingMesh *MEDCouplingField::buildSubMeshData(const int *start, const int *end, DataArrayInt *&di) const
 {
   return _type->buildSubMeshData(start,end,_mesh,di);
index 925cb07338825759a625cfd0fbf941ea183dc1d6..6077b76164dee100451611fc6e1368fc15dbda34 100644 (file)
@@ -166,7 +166,6 @@ namespace ParaMEDMEM
     void setEndTime(double time, int dt, int it) throw(INTERP_KERNEL::Exception) { _time=time; _dt=dt; _it=it; }
     double getStartTime(int& dt, int& it) const throw(INTERP_KERNEL::Exception) { dt=_dt; it=_it; return _time; }
     double getEndTime(int& dt, int& it) const throw(INTERP_KERNEL::Exception) { dt=_dt; it=_it; return _time; }
-    DataArrayDouble *getArrayOnTime(double time) const throw(INTERP_KERNEL::Exception);
     std::vector< const DataArrayDouble *> getArraysForTime(double time) const throw(INTERP_KERNEL::Exception);
     void getValueForTime(double time, const std::vector<double>& vals, double *res) const;
     void getValueOnTime(int eltId, double time, double *value) const throw(INTERP_KERNEL::Exception);