FEI Version of the Day
Loading...
Searching...
No Matches
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
25class CRSet {
26 public:
29 CRSet();
30
34 ~CRSet();
35
37 int crID_;
38
41
45 GlobalID slaveNodeID_;
46
49
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:27
CRSet()
Definition CRSet.cpp:15
int slaveOffset_
Definition CRSet.hpp:53
int crID_
Definition CRSet.hpp:37
int slaveFieldID_
Definition CRSet.hpp:48
GlobalID slaveNodeID_
Definition CRSet.hpp:45
int numNodes_
Definition CRSet.hpp:40