Salome HOME
71dbda7bf08bdba47bfdc16094cd1f192b29d301
[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 __MEDCOUPLINGFIELDINT_HXX__
22 #define __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 MEDCouplingFieldTemplate;
34   
35   class MEDCouplingFieldInt : public MEDCouplingField
36   {
37   public:
38     MEDCOUPLING_EXPORT static MEDCouplingFieldInt *New(TypeOfField type, TypeOfTimeDiscretization td=ONE_TIME);
39     MEDCOUPLING_EXPORT static MEDCouplingFieldInt *New(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td=ONE_TIME);
40     MEDCOUPLING_EXPORT void checkConsistencyLight() const;
41     MEDCOUPLING_EXPORT std::string simpleRepr() const;
42     MEDCOUPLING_EXPORT void reprQuickOverview(std::ostream& stream) const;
43     MEDCOUPLING_EXPORT void setTimeUnit(const std::string& unit);
44     MEDCOUPLING_EXPORT std::string getTimeUnit() const;
45     MEDCOUPLING_EXPORT void setTime(double val, int iteration, int order);
46     MEDCOUPLING_EXPORT double getTime(int& iteration, int& order) const;
47     MEDCOUPLING_EXPORT void setArray(DataArrayInt *array);
48     MEDCOUPLING_EXPORT const DataArrayInt *getArray() const;
49     MEDCOUPLING_EXPORT DataArrayInt *getArray();
50   protected:
51     MEDCouplingFieldInt(TypeOfField type, TypeOfTimeDiscretization td);
52     MEDCouplingFieldInt(const MEDCouplingFieldInt& other, bool deepCopy);
53     MEDCouplingFieldInt(NatureOfField n, MEDCouplingTimeDiscretizationInt *td, MEDCouplingFieldDiscretization *type);
54     MEDCouplingFieldInt(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td);
55     ~MEDCouplingFieldInt();
56   private:
57     MEDCouplingTimeDiscretizationInt *_time_discr;
58   };
59 }
60
61 #endif