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

Method recvSelf

DEVELOPER/core/Subdomain.cpp:854–867  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

852}
853
854int
855Subdomain::recvSelf(int cTag, Channel &theChannel,
856 FEM_ObjectBroker &theBroker)
857{
858 int dataTag = this->getDbTag();
859 ID data(2);
860 theChannel.recvID(dataTag, cTag, data);
861 if (data(1) == 0) {
862 theAnalysis = theBroker.getNewDomainDecompAnalysis(data(0),*this);
863 if (theAnalysis != 0)
864 return theAnalysis->recvSelf(cTag, theChannel,theBroker);
865 }
866 return -1;
867}
868
869double
870Subdomain::getCost(void)

Callers

nothing calls this directly

Calls 3

getDbTagMethod · 0.45
recvIDMethod · 0.45

Tested by

no test coverage detected