Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/med.git] / src / ParaMEDMEM / ParaFIELD.hxx
1 // Copyright (C) 2007-2012  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.
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 ParaMEDMEM
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
39     ParaFIELD(TypeOfField type, TypeOfTimeDiscretization td, ParaMESH* mesh, const ComponentTopology& component_topology); 
40
41
42     ParaFIELD(MEDCouplingFieldDouble* field, ParaMESH *sup, const ProcessorGroup& group);
43   
44     virtual ~ParaFIELD();
45     void synchronizeTarget( ParaMEDMEM::ParaFIELD* source_field);
46     void synchronizeSource( ParaMEDMEM::ParaFIELD* target_field);
47     MEDCouplingFieldDouble* getField() const { return _field; }
48     void setOwnSupport(bool v) const { _own_support=v; }
49     DataArrayInt* returnCumulativeGlobalNumbering() const;
50     DataArrayInt* returnGlobalNumbering() const;
51     Topology* getTopology() const { return _topology; }
52     ParaMESH* getSupport() const  { return _support; }
53     int nbComponents() const;
54     double getVolumeIntegral(int icomp, bool isWAbs) const;
55     double getL2Norm()const { return -1; }
56   private:
57     MEDCouplingFieldDouble* _field;
58     ParaMEDMEM::ComponentTopology _component_topology;
59     Topology* _topology; 
60     mutable bool _own_support;
61     ParaMESH* _support;
62   };
63
64 }
65
66 #endif