]> SALOME platform Git repositories - modules/med.git/blob - src/ParaMEDMEM/ComponentTopology.hxx
Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/med.git] / src / ParaMEDMEM / ComponentTopology.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 __COMPONENTTOPOLOGY_HXX__
20 #define __COMPONENTTOPOLOGY_HXX__
21
22 #include "ProcessorGroup.hxx"
23 #include "Topology.hxx"
24
25 #include <vector>
26
27 namespace ParaMEDMEM
28 {
29   class ComponentTopology
30   {
31   public:
32     ComponentTopology(int nb_comp, ProcessorGroup* group);
33     ComponentTopology(int nb_comp, int nb_blocks);
34     ComponentTopology(int nb_comp);
35     ComponentTopology();
36     virtual ~ComponentTopology();
37     //!returns the number of MED components in the topology
38     int nbComponents() const { return _component_array.back(); }
39     //!returns the number of MED components on local processor
40     int nbLocalComponents() const ;
41     //!returns the number of the first MED component on local processor
42     int firstLocalComponent() const ;
43     //!returns the number of blocks in the topology
44     int nbBlocks()const {return _component_array.size()-1;}
45     //!returns the block structure
46     const std::vector<int>* getBlockIndices() const { return &_component_array; }
47     const ProcessorGroup* getProcGroup()const { return _proc_group; } 
48   private:
49     std::vector<int> _component_array;
50     ProcessorGroup* _proc_group;
51   };
52 }
53
54 #endif /*COMPONENTTOPOLOGY_HXX_*/