Salome HOME
afb81bee592e75e793574699421ad9d46ed37ed6
[modules/med.git] / src / ParaMEDMEM / DECOptions.hxx
1 // Copyright (C) 2007-2013  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 __DECOPTIONS_HXX__
21 #define __DECOPTIONS_HXX__
22
23 #include <string>
24
25 namespace ParaMEDMEM
26 {
27   //Enum describing the allToAll method used in the communication pattern
28   typedef enum { Native, PointToPoint } AllToAllMethod;
29   typedef enum { WithoutTimeInterp, LinearTimeInterp } TimeInterpolationMethod;
30
31   class DECOptions
32   {
33   protected:
34     std::string _method;
35     bool _asynchronous;
36     TimeInterpolationMethod _timeInterpolationMethod;
37     AllToAllMethod _allToAllMethod;
38     bool _forcedRenormalization;
39   public:
40     DECOptions():_method("P0"),
41                  _asynchronous(false),
42                  _timeInterpolationMethod(WithoutTimeInterp),
43                  _allToAllMethod(Native),
44                  _forcedRenormalization(false)
45     {
46     }
47     
48     DECOptions(const DECOptions& deco)
49     {
50       _method=deco._method;
51       _timeInterpolationMethod=deco._timeInterpolationMethod;
52       _asynchronous=deco._asynchronous;
53       _forcedRenormalization=deco._forcedRenormalization;
54       _allToAllMethod=deco._allToAllMethod;
55     }
56     
57     const std::string& getMethod() const { return _method; }
58     void setMethod(const char *m) { _method=m; }
59
60     TimeInterpolationMethod getTimeInterpolationMethod() const { return DECOptions::_timeInterpolationMethod; }
61     void setTimeInterpolationMethod(TimeInterpolationMethod it) { DECOptions::_timeInterpolationMethod=it; }
62
63     bool getForcedRenormalization() const { return DECOptions::_forcedRenormalization; }
64     void setForcedRenormalization( bool dr) { DECOptions::_forcedRenormalization = dr; }
65
66     bool getAsynchronous() const { return DECOptions::_asynchronous; }
67     void setAsynchronous( bool dr) { DECOptions::_asynchronous = dr; }
68      
69     AllToAllMethod getAllToAllMethod() const { return _allToAllMethod; }
70     void setAllToAllMethod(AllToAllMethod sp) { _allToAllMethod=sp; }
71   };
72 }
73
74 #endif