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