FEI Package Browser (Single Doxygen Collection)  Version of the Day
CRSet.hpp
Go to the documentation of this file.
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 
46 
49 
54 
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::penValues_
double * penValues_
Definition: CRSet.hpp:61
CRSet::slaveOffset_
int slaveOffset_
Definition: CRSet.hpp:53
CRSet::slaveNodeID_
GlobalID slaveNodeID_
Definition: CRSet.hpp:45
CRSet::numNodes_
int numNodes_
Definition: CRSet.hpp:40
CRSet::weights_
double * weights_
Definition: CRSet.hpp:59
CRSet::crID_
int crID_
Definition: CRSet.hpp:37
CRSet::nodeIDs_
GlobalID ** nodeIDs_
Definition: CRSet.hpp:55
CRSet::values_
double * values_
Definition: CRSet.hpp:60
GlobalID
int GlobalID
Definition: fei_defs.h:60
CRSet
Definition: CRSet.hpp:25
CRSet::fieldIDs_
int * fieldIDs_
Definition: CRSet.hpp:57
CRSet::~CRSet
~CRSet()
Definition: CRSet.cpp:27
CRSet::deleteMemory
void deleteMemory()
Definition: CRSet.cpp:32
CRSet::slaveFieldID_
int slaveFieldID_
Definition: CRSet.hpp:48
CRSet::CRSet
CRSet()
Definition: CRSet.cpp:15