Salome HOME
update after merging trhe branches CEA_V3_0_x, OCC_V3_1_0_a1_x, and the main
[modules/med.git] / src / MEDMEM / test_copie_family.cxx
1 #include<string>
2
3 #include <math.h>
4 #include <stdlib.h>
5
6 #include "MEDMEM_Exception.hxx"
7 #include "MEDMEM_Mesh.hxx"
8 #include "MEDMEM_Family.hxx"
9 #include "MEDMEM_Group.hxx"
10
11 #include "MEDMEM_MedMeshDriver.hxx"
12 #include "MEDMEM_MedFieldDriver.hxx"
13 #include "MEDMEM_Support.hxx"
14 #include "MEDMEM_Field.hxx"
15 #include "MEDMEM_define.hxx"
16
17 using namespace std;
18 using namespace MEDMEM;
19 using namespace MED_EN;
20
21 void affiche_support(const SUPPORT * mySupport) 
22 {
23   cout << "  - Name : "<<mySupport->getName().c_str()<<endl ;
24   cout << "  - Description : "<<mySupport->getDescription().c_str()<<endl ;
25   cout << "  - Entity : "<<mySupport->getEntity()<<endl ;
26   cout << "  - Entities list : "<<endl ;
27   if (!(mySupport->isOnAllElements())) {
28     int NumberOfTypes = mySupport->getNumberOfTypes() ;
29     cout<<"  - NumberOfTypes : "<<NumberOfTypes<<endl;
30     const medGeometryElement * Types = mySupport->getTypes() ;
31     for (int j=0;j<NumberOfTypes;j++) {
32       cout<<"    * Type "<<Types[j]<<" : ";
33       int NumberOfElements = mySupport->getNumberOfElements(Types[j]) ;
34       const int * Number = mySupport->getNumber(Types[j]) ;
35       for (int k=0; k<NumberOfElements;k++)
36         cout << Number[k] << " ";
37       cout << endl ;
38     }
39   } else
40     cout << "    Is on all entities !"<< endl;
41 }
42
43
44 void affiche_famille(const FAMILY * myFamily)
45 {
46     affiche_support(myFamily);
47     cout << "  - Identifier : "<<myFamily->getIdentifier()<<endl ;
48     int NumberOfAttributes = myFamily->getNumberOfAttributes() ;
49     cout << "  - Attributes ("<<NumberOfAttributes<<") :"<<endl;
50     for (int j=1;j<NumberOfAttributes+1;j++)
51       cout << "    * "<<myFamily->getAttributeIdentifier(j)<<" : "<<myFamily->getAttributeValue(j)<<", "<<myFamily->getAttributeDescription(j).c_str()<<endl ;
52     int NumberOfGroups = myFamily->getNumberOfGroups() ;
53     cout << "  - Groups ("<<NumberOfGroups<<") :"<<endl;
54     for (int j=1;j<NumberOfGroups+1;j++)
55       cout << "    * "<<myFamily->getGroupName(j).c_str()<<endl ;
56 }
57
58 void affiche_groupe(MESH *myMesh,medEntityMesh Entity) 
59 {
60   int NumberOfGroups = myMesh->getNumberOfGroups(Entity) ;
61   cout << "NumberOfGroups : "<<NumberOfGroups<<endl;
62   for (int i=1; i<NumberOfGroups+1;i++) {
63     const GROUP* myGroup = myMesh->getGroup(Entity,i);
64     affiche_support(myGroup);
65     int NumberOfFamillies = myGroup->getNumberOfFamilies() ;
66     cout << "  - Families ("<<NumberOfFamillies<<") :"<<endl;
67     for (int j=1;j<NumberOfFamillies+1;j++)
68       cout << "    * "<<myGroup->getFamily(j)->getName().c_str()<<endl ;
69   }
70 }
71
72 int main (int argc, char ** argv) {
73   int read;
74
75   if (argc <3) { // after 3, ignored !
76     cerr << "Usage : " << argv[0] 
77          << " filename meshname" << endl << endl;
78     exit(-1);
79   }
80
81   string filename = argv[1] ;
82   string meshname = argv[2] ;
83
84   MESH * myMesh= new MESH() ;
85   myMesh->setName(meshname);
86   MED_MESH_RDONLY_DRIVER myMeshDriver(filename,myMesh) ;
87   myMeshDriver.setMeshName(meshname);
88   myMeshDriver.open() ;
89   myMeshDriver.read() ;
90   myMeshDriver.close() ;
91
92   const FAMILY * myFamily = myMesh->getFamily(MED_NODE,1);
93   //On renseigne les attributs spécifiques à FAMILY (p/r à SUPPORT) et non renseignés lors de la lecture du maillage
94 //    int  NumberOfAttribute = 3;
95 //    int *AttributeIdentifier = new int[NumberOfAttribute];
96 //    int *AttributeValue = new int[NumberOfAttribute];
97 //    string *AttributeDescription = new string[NumberOfAttribute];
98 //    char *tmp;
99 //    for (int i=0;i<NumberOfAttribute;i++)
100 //      {
101 //        AttributeIdentifier[i]=i+1;
102 //        AttributeValue[i]=(i+1)*10;
103 //        sprintf(tmp,"Attribut N° %d",i+1);
104 //        AttributeDescription[i]=tmp;
105 //      }
106
107 //    myFamily->setNumberOfAttributes(NumberOfAttribute);
108 //    myFamily->setAttributesIdentifiers (AttributeIdentifier);
109 //    myFamily->setAttributesValues (AttributeValue);
110 //    myFamily->setAttributesDescriptions (AttributeDescription);
111
112   cout << "Show Family :"<<endl ;
113   affiche_famille(myFamily);
114   FAMILY * myFamily2 = new FAMILY(* myFamily);
115   //delete myFamily;
116   cout << "Show Family2 :"<<endl ;
117   affiche_famille(myFamily2);
118   FAMILY * myFamily3 = new FAMILY(* myFamily2);
119   delete myFamily2;
120   cout << "Show Family3 :"<<endl ;
121   affiche_famille(myFamily3);
122   delete myFamily3;
123
124   cout << "That's all"<<endl ;
125
126   /*
127   cout << "Show Group :"<<endl ;
128   affiche_groupe(myMesh,MED_NODE);
129   affiche_groupe(myMesh,MED_CELL);
130   affiche_groupe(myMesh,MED_FACE);
131   affiche_groupe(myMesh,MED_EDGE);
132   */
133
134   delete myMesh;
135
136   return 0;
137 }