| 250 | |
| 251 | |
| 252 | DOF_Group * |
| 253 | AnalysisModel::getDOF_GroupPtr(int tag) |
| 254 | { |
| 255 | TaggedObject *other = theDOFs->getComponentPtr(tag); |
| 256 | if (other == 0) { |
| 257 | return 0; |
| 258 | } |
| 259 | DOF_Group *result = (DOF_Group *)other; |
| 260 | return result; |
| 261 | } |
| 262 | |
| 263 | |
| 264 | FE_EleIter & |
no test coverage detected