Salome HOME
fa5f8bca8d9e21529c8ad0f3f404fcc6051c83eb
[tools/medcoupling.git] / src / ParaMEDMEM / ParaFIELD.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
20 #ifndef __PARAFIELD_HXX__
21 #define __PARAFIELD_HXX__
22
23 #include "MEDCouplingRefCountObject.hxx"
24 #include "ComponentTopology.hxx"
25
26 namespace MEDCoupling
27 {
28   class DataArrayInt;
29   class ParaMESH;
30   class ProcessorGroup;
31   class MEDCouplingFieldDouble;
32   class ComponentTopology;
33   class Topology;
34
35   class ParaFIELD
36   {
37   public:
38     ParaFIELD(TypeOfField type, TypeOfTimeDiscretization td, ParaMESH* mesh, const ComponentTopology& component_topology); 
39     ParaFIELD(MEDCouplingFieldDouble* field, ParaMESH *sup, const ProcessorGroup& group);
40     virtual ~ParaFIELD();
41
42     void synchronizeTarget( MEDCoupling::ParaFIELD* source_field);
43     void synchronizeSource( MEDCoupling::ParaFIELD* target_field);
44     MEDCouplingFieldDouble* getField() const { return _field; }
45     void setOwnSupport(bool v) const { _own_support=v; }
46     DataArrayInt* returnCumulativeGlobalNumbering() const;
47     DataArrayInt* returnGlobalNumbering() const;
48     Topology* getTopology() const { return _topology; }
49     ParaMESH* getSupport() const  { return _support; }
50     int nbComponents() const;
51     double getVolumeIntegral(int icomp, bool isWAbs) const;
52     double getL2Norm()const { return -1; }
53
54   private:
55     MEDCouplingFieldDouble* _field;
56     MEDCoupling::ComponentTopology _component_topology;
57     Topology* _topology; 
58     mutable bool _own_support;
59     ParaMESH* _support;
60   };
61
62 }
63
64 #endif