FEI  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
CRSet.hpp
1 #ifndef _CRSet_h_
2 #define _CRSet_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 
25 class CRSet {
26  public:
29  CRSet();
30 
34  ~CRSet();
35 
37  int crID_;
38 
40  int numNodes_;
41 
45  GlobalID slaveNodeID_;
46 
48  int slaveFieldID_;
49 
53  int slaveOffset_;
54 
55  GlobalID** nodeIDs_;
56 
57  int* fieldIDs_;
58 
59  double* weights_;
60  double* values_;
61  double* penValues_;
62 
63  private:
64  void deleteMemory();
65 };
66 
67 #endif
68 
CRSet()
Definition: CRSet.cpp:15
Definition: CRSet.hpp:25
GlobalID slaveNodeID_
Definition: CRSet.hpp:45
int slaveOffset_
Definition: CRSet.hpp:53
int crID_
Definition: CRSet.hpp:37
int numNodes_
Definition: CRSet.hpp:40
~CRSet()
Definition: CRSet.cpp:27
int slaveFieldID_
Definition: CRSet.hpp:48