MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / getNode

Method getNode

DEVELOPER/core/Domain.cpp:1428–1438  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1426
1427
1428Node *
1429Domain::getNode(int tag)
1430{
1431 TaggedObject *mc = theNodes->getComponentPtr(tag);
1432
1433 // if not there return 0 otherwise perform a cast and return that
1434 if (mc == 0)
1435 return 0;
1436 Node *result = (Node *)mc;
1437 return result;
1438}
1439
1440SP_Constraint *
1441Domain::getSP_Constraint(int tag)

Callers 15

addElementMethod · 0.95
addSP_ConstraintMethod · 0.95
addMP_ConstraintMethod · 0.95
addNodalLoadMethod · 0.95
getNodeResponseMethod · 0.95
getNodeDispMethod · 0.95
setMassMethod · 0.95
setDomainMethod · 0.45
setDomainMethod · 0.45
getPressureNodeMethod · 0.45
getPressureMethod · 0.45

Calls 1

getComponentPtrMethod · 0.45

Tested by

no test coverage detected