Salome HOME
Updated copyright comment
[modules/hexablock.git] / src / HEXABLOCK / HexElements.cxx
old mode 100755 (executable)
new mode 100644 (file)
index 1b3b8b1..5adc660
@@ -1,7 +1,7 @@
 
 // C++ : Grilles
 
-// Copyright (C) 2009-2014  CEA/DEN, EDF R&D
+// Copyright (C) 2009-2024  CEA, EDF
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
@@ -513,13 +513,13 @@ int Elements::cutHexas  (const Edges& t_edges, int nbcuts)
                                        // 1) marquage des hexas
    el_root->markAll (NO_USED);
                                        // 2) Memo noeuds
-   vector <Quad*> q_amont;
-   vector <Quad*> q_aval;
-   map    <Vertex*, Vertex*> vis_a_vis;
+   std::vector <Quad*> q_amont;
+   std::vector <Quad*> q_aval;
+   std::map    <Vertex*, Vertex*> vis_a_vis;
 
    int nbnodes = t_edges.size();
-   vector <Vertex*> v_amont (nbnodes);
-   vector <Vertex*> v_aval  (nbnodes);
+   std::vector <Vertex*> v_amont (nbnodes);
+   std::vector <Vertex*> v_aval  (nbnodes);
 
    int nbfaces = 0;
    for (int nro=0; nro<nbnodes ; nro++)
@@ -584,7 +584,7 @@ int Elements::cutHexas  (const Edges& t_edges, int nbcuts)
    tab_edge.resize   (nbr_edges,  NULL);
    tab_hexa.resize   (nbr_hexas,  NULL);
    tab_vertex.resize (nbr_vertex, NULL);
-   vector <Edge*>    tab_pilier (nbpiliers);
+   std::vector <Edge*>    tab_pilier (nbpiliers);
 
    int nbinter = nbcuts + 1;
    for (int ned=0; ned<nbnodes ; ned++)