Salome HOME
66637f2e3b3678a7a37d32edc95b0ae6930d1b18
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingFieldInt.cxx
1 // Copyright (C) 2007-2019  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 #include "MEDCouplingFieldInt.hxx"
22 #include "MEDCouplingFieldT.txx"
23 #include "MEDCouplingFieldDouble.hxx"
24 #include "MEDCouplingFieldTemplate.hxx"
25 #include "MEDCouplingMesh.hxx"
26 #include "MEDCouplingMemArray.txx"
27
28 using namespace MEDCoupling;
29
30 template class MEDCoupling::MEDCouplingFieldT<int>;
31
32 MEDCouplingFieldInt *MEDCouplingFieldInt::New(TypeOfField type, TypeOfTimeDiscretization td)
33 {
34   return new MEDCouplingFieldInt(type,td);
35 }
36
37 MEDCouplingFieldInt *MEDCouplingFieldInt::New(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td)
38 {
39   return new MEDCouplingFieldInt(ft,td);
40 }
41
42 MEDCouplingFieldInt::MEDCouplingFieldInt(TypeOfField type, TypeOfTimeDiscretization td):MEDCouplingFieldT<int>(type,MEDCouplingTimeDiscretizationInt::New(td))
43 {
44 }
45
46 MEDCouplingFieldInt::MEDCouplingFieldInt(const MEDCouplingFieldInt& other, bool deepCpy):MEDCouplingFieldT<int>(other,deepCpy)
47 {
48 }
49
50 MEDCouplingFieldInt::MEDCouplingFieldInt(NatureOfField n, MEDCouplingTimeDiscretizationInt *td, MEDCouplingFieldDiscretization *type):MEDCouplingFieldT<int>(type,n,td)
51 {
52 }
53
54 /*!
55  * ** WARINING : This method do not deeply copy neither mesh nor spatial discretization. Only a shallow copy (reference) is done for mesh and spatial discretization ! **
56  */
57 MEDCouplingFieldInt::MEDCouplingFieldInt(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td):MEDCouplingFieldT<int>(ft,MEDCouplingTimeDiscretizationInt::New(td),false)
58 {
59 }
60
61 MEDCouplingFieldInt *MEDCouplingFieldInt::deepCopy() const
62 {
63   return cloneWithMesh(true);
64 }
65
66 MEDCouplingFieldInt *MEDCouplingFieldInt::clone(bool recDeepCpy) const
67 {
68   return new MEDCouplingFieldInt(*this,recDeepCpy);
69 }
70
71 MEDCouplingFieldDouble *MEDCouplingFieldInt::convertToDblField() const
72 {
73   MCAuto<MEDCouplingFieldTemplate> tmp(MEDCouplingFieldTemplate::New(*this));
74   int t1,t2;
75   double t0(getTime(t1,t2));
76   MCAuto<MEDCouplingFieldDouble> ret(MEDCouplingFieldDouble::New(*tmp,getTimeDiscretization()));
77   ret->setTime(t0,t1,t2);
78   if(getArray())
79     {
80       MCAuto<DataArrayDouble> arr(getArray()->convertToDblArr());
81       ret->setArray(arr);
82     }
83   return ret.retn();
84 }