Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
nodeMatcher Class Reference

#include <adj.h>

Public Member Functions

nodeloc2node (const vector3d &loc)
 

Private Attributes

CkHashtableTslow
< hashableVector3d, node * > 
map
 

Detailed Description

Definition at line 193 of file adj.h.

Member Function Documentation

node * loc2node ( const vector3d loc)

Definition at line 230 of file adj.cpp.

References map, and n.

Referenced by buildFaces(), and face::face().

230  {
231  hashableVector3d hLoc(loc);
232  node *n=map.get(hLoc);
233  if (n==NULL)
234  { //Node is not yet in table-- add it
235  n=new node(loc);
236  map.put(hLoc)=n;
237  }
238  return n;
239 }
Definition: adj.h:150
CkHashtableTslow< hashableVector3d, node * > map
Definition: adj.h:195
const NT & n

Here is the caller graph for this function:

Member Data Documentation

CkHashtableTslow<hashableVector3d,node *> map
private

Definition at line 195 of file adj.h.

Referenced by loc2node().


The documentation for this class was generated from the following files: