Salome HOME
MED file mesh loading on demand.
[tools/medcoupling.git] / src / MEDLoader / MEDFileMeshReadSelector.cxx
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 // Author : Anthony Geay (CEA/DEN)
20
21 #include "MEDFileMeshReadSelector.hxx"
22
23 using namespace ParaMEDMEM;
24
25 MEDFileMeshReadSelector::MEDFileMeshReadSelector():_code(0)
26 {
27 }
28
29 MEDFileMeshReadSelector::MEDFileMeshReadSelector(unsigned int code):_code(code)
30 {
31 }
32
33 unsigned int MEDFileMeshReadSelector::getCode() const
34 {
35   return _code;
36 }
37
38 void MEDFileMeshReadSelector::setCode(unsigned int newCode)
39 {
40   _code=newCode;
41 }
42
43 bool MEDFileMeshReadSelector::isCellFamilyFieldReading() const
44 {
45   return _code & 0x00000001;
46 }
47
48 bool MEDFileMeshReadSelector::isNodeFamilyFieldReading() const
49 {
50   return _code & 0x00000002;
51 }
52
53 bool MEDFileMeshReadSelector::isCellNameFieldReading() const
54 {
55   return _code & 0x00000004;
56 }
57
58 bool MEDFileMeshReadSelector::isNodeNameFieldReading() const
59 {
60   return _code & 0x00000008;
61 }
62
63 void MEDFileMeshReadSelector::setCellFamilyFieldReading(bool b)
64 {
65 }
66
67 void MEDFileMeshReadSelector::setNodeFamilyFieldReading(bool b)
68 {
69 }
70
71 void MEDFileMeshReadSelector::setCellNameFieldReading(bool b)
72 {
73 }
74
75 void MEDFileMeshReadSelector::setNodeNameFieldReading(bool b)
76 {
77 }
78
79 void MEDFileMeshReadSelector::reprAll(std::ostream& str) const
80 {
81   str << "MEDFileMeshReadSelector (code=" << _code << ") : \n";
82   str << "Read family field on cells : " << ReprStatus(isCellFamilyFieldReading()) << std::endl;
83   str << "Read family field on nodes : " << ReprStatus(isNodeFamilyFieldReading()) << std::endl;
84   str << "Read family name on cells : " << ReprStatus(isCellNameFieldReading()) << std::endl;
85   str << "Read family name on nodes : " << ReprStatus(isNodeNameFieldReading());
86 }
87
88 std::string MEDFileMeshReadSelector::ReprStatus(bool v)
89 {
90   if(v)
91     return std::string("ON");
92   else
93     return std::string("OFF");
94 }
95