Salome HOME
Merge from V6_main 01/04/2013
[modules/paravis.git] / src / Plugins / MedReader / IO / vtkMedVariableAttribute.h
1 // Copyright (C) 2010-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 __vtkMedVariableAttribute_h_
21 #define __vtkMedVariableAttribute_h_
22
23 #include "vtkObject.h"
24 #include "vtkMed.h"
25 #include "vtkMedSetGet.h"
26
27 class vtkAbstractArray;
28 class vtkMedStructElement;
29 class vtkMedEntityArray;
30
31 class VTK_EXPORT vtkMedVariableAttribute : public vtkObject
32 {
33 public :
34   static vtkMedVariableAttribute* New();
35   vtkTypeMacro(vtkMedVariableAttribute, vtkObject)
36   void PrintSelf(ostream& os, vtkIndent indent);
37
38   // Description:
39   // This is the name of this attribute
40   vtkSetStringMacro(Name);
41   vtkGetStringMacro(Name);
42
43   // Description:
44   // The iterator in the med file of this constant attribute
45   vtkSetMacro(MedIterator, med_int);
46   vtkGetMacro(MedIterator, med_int);
47
48   // Description:
49   // The Geometry type this structural elements lies on.
50   vtkSetMacro(AttributeType, med_attribute_type);
51   vtkGetMacro(AttributeType, med_attribute_type);
52
53   // Description:
54   // The dimension of this structural elements model
55   vtkSetMacro(NumberOfComponent, med_int);
56   vtkGetMacro(NumberOfComponent, med_int);
57
58   // Description:
59   // The Structural element on which lies this attribute
60   virtual void  SetParentStructElement(vtkMedStructElement*);
61   vtkGetObjectMacro(ParentStructElement, vtkMedStructElement);
62
63   // Description:
64   // Load the values associated with this attribute for the given entity array;
65   void  Load(vtkMedEntityArray*);
66
67 protected:
68   vtkMedVariableAttribute();
69   virtual ~vtkMedVariableAttribute();
70
71   char *Name;
72   med_int MedIterator;
73   med_attribute_type AttributeType;
74   med_int NumberOfComponent;
75
76   vtkMedStructElement* ParentStructElement;
77
78 private:
79   vtkMedVariableAttribute(const vtkMedVariableAttribute&); // Not implemented.
80   void operator=(const vtkMedVariableAttribute&); // Not implemented.
81 };
82
83 #endif //__vtkMedVariableAttribute_h_