Salome HOME
Copyright update 2021
[tools/medcoupling.git] / src / MEDCoupling / MEDCouplingFieldFloat.cxx
1 // Copyright (C) 2007-2021  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 : Anthony GEAY (EDF R&D)
20
21 #include "MEDCouplingFieldFloat.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<float>;
31
32 MEDCouplingFieldFloat *MEDCouplingFieldFloat::New(TypeOfField type, TypeOfTimeDiscretization td)
33 {
34   return new MEDCouplingFieldFloat(type,td);
35 }
36
37 MEDCouplingFieldFloat *MEDCouplingFieldFloat::New(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td)
38 {
39   return new MEDCouplingFieldFloat(ft,td);
40 }
41
42 MEDCouplingFieldFloat::MEDCouplingFieldFloat(TypeOfField type, TypeOfTimeDiscretization td):MEDCouplingFieldT<float>(type,MEDCouplingTimeDiscretizationFloat::New(td))
43 {
44 }
45
46 MEDCouplingFieldFloat::MEDCouplingFieldFloat(const MEDCouplingFieldFloat& other, bool deepCpy):MEDCouplingFieldT<float>(other,deepCpy)
47 {
48 }
49
50 MEDCouplingFieldFloat::MEDCouplingFieldFloat(NatureOfField n, MEDCouplingTimeDiscretizationFloat *td, MEDCouplingFieldDiscretization *type):MEDCouplingFieldT<float>(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 MEDCouplingFieldFloat::MEDCouplingFieldFloat(const MEDCouplingFieldTemplate& ft, TypeOfTimeDiscretization td):MEDCouplingFieldT<float>(ft,MEDCouplingTimeDiscretizationFloat::New(td),false)
58 {
59 }
60
61 MEDCouplingFieldFloat *MEDCouplingFieldFloat::deepCopy() const
62 {
63   return cloneWithMesh(true);
64 }
65
66 MEDCouplingFieldFloat *MEDCouplingFieldFloat::clone(bool recDeepCpy) const
67 {
68   return new MEDCouplingFieldFloat(*this,recDeepCpy);
69 }
70
71 MEDCouplingFieldDouble *MEDCouplingFieldFloat::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 }