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