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

Method getLoadPattern

DEVELOPER/core/Domain.cpp:1520–1529  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1518}
1519
1520LoadPattern *
1521Domain::getLoadPattern(int tag)
1522{
1523 TaggedObject *mc = theLoadPatterns->getComponentPtr(tag);
1524 // if not there return 0 otherwise perform a cast and return that
1525 if (mc == 0)
1526 return 0;
1527 LoadPattern *result = (LoadPattern *)mc;
1528 return result;
1529}
1530
1531
1532double

Callers 3

removeSP_ConstraintMethod · 0.95
removeNodalLoadMethod · 0.95
removeElementalLoadMethod · 0.95

Calls 1

getComponentPtrMethod · 0.45

Tested by

no test coverage detected