| 335 | |
| 336 | |
| 337 | int |
| 338 | FORMAnalysis::getStorage(const char *variable, int lsfTag, Vector &stuff) |
| 339 | { |
| 340 | int lsf = theReliabilityDomain->getLimitStateFunctionIndex(lsfTag); |
| 341 | Information relOut; |
| 342 | |
| 343 | int tempres = storage[lsf]->getVariable(variable,relOut); |
| 344 | //check for tempres error |
| 345 | |
| 346 | Vector temp(relOut.getData()); |
| 347 | stuff = temp; |
| 348 | stuff = relOut.getData(); |
| 349 | |
| 350 | return 0; |
| 351 | } |
no test coverage detected