FEI Version of the Day
Loading...
Searching...
No Matches
CommNodeSet.hpp
1#ifndef _CommNodeSet_h_
2#define _CommNodeSet_h_
3
4/*--------------------------------------------------------------------*/
5/* Copyright 2005 Sandia Corporation. */
6/* Under the terms of Contract DE-AC04-94AL85000, there is a */
7/* non-exclusive license for use of this work by or on behalf */
8/* of the U.S. Government. Export of this program may require */
9/* a license from the United States Government. */
10/*--------------------------------------------------------------------*/
11
12class CommNodeSet {
13 public:
14 CommNodeSet();
15 ~CommNodeSet();
16
17 int numNodes_;
18 GlobalID* nodeIDs_;
19 int** procs_;
20 int* procsPerNode_;
21 private:
22 void deleteMemory();
23};
24
25#endif
26