Salome HOME
Very first implementation of MEDCouplingFieldInt.
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingFieldInt.hxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Yann Pora (EDF R&D)
20
21 #ifndef __PARAMEDMEM_MEDCOUPLINGFIELDINT_HXX__
22 #define __PARAMEDMEM_MEDCOUPLINGFIELDINT_HXX__
23
24 #include "MEDCoupling.hxx"
25 #include "MEDCouplingField.hxx"
26 #include "MEDCouplingTimeDiscretization.hxx"
27 #include "MEDCouplingMemArray.hxx"
28
29 #include <string>
30
31 namespace MEDCoupling
32 {
33   class MEDCouplingFieldInt : public MEDCouplingField
34   {
35   public:
36     MEDCOUPLING_EXPORT static MEDCouplingFieldInt *New(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME);
37     MEDCOUPLING_EXPORT void checkConsistencyLight() const;
38     MEDCOUPLING_EXPORT std::string simpleRepr() const;
39     MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
40     MEDCOUPLING_EXPORT void setTimeUnit(const std::string& unit);
41     MEDCOUPLING_EXPORT std::string getTimeUnit() const;
42     MEDCOUPLING_EXPORT void setTime(double val, int iteration, int order);
43     MEDCOUPLING_EXPORT double getTime(int& iteration, int& order) const;
44     MEDCOUPLING_EXPORT void setArray(DataArrayInt *array);
45     MEDCOUPLING_EXPORT const DataArrayInt *getArray() const;
46     MEDCOUPLING_EXPORT DataArrayInt *getArray();
47   protected:
48     MEDCouplingFieldInt(TypeOfField type, TypeOfTimeDiscretization td);
49     MEDCouplingFieldInt(const MEDCouplingFieldInt& other, bool deepCopy);
50     MEDCouplingFieldInt(NatureOfField n, MEDCouplingTimeDiscretization *td, MEDCouplingFieldDiscretization *type);
51     ~MEDCouplingFieldInt();
52   private:
53     MEDCouplingTimeDiscretization *_time_discr;
54     MCAuto<DataArrayInt> _array;// agy : don't panic ! this is temporary ! templatization of time discr is planned !
55   };
56 }
57
58 #endif