| 44 | } |
| 45 | |
| 46 | void DRMInputHandler::seteNodeMap(std::map<int,int>& enodes) |
| 47 | { |
| 48 | double xMin = this->drm_box_Crds[0]; double xMax = this->drm_box_Crds[1]; |
| 49 | double yMin = this->drm_box_Crds[2]; double yMax = this->drm_box_Crds[3]; |
| 50 | double zMin = this->drm_box_Crds[4]; double zMax = this->drm_box_Crds[5]; |
| 51 | |
| 52 | this->myMesher->allocate_e_Nodes(xMin, xMax, |
| 53 | yMin, yMax, |
| 54 | zMin, zMax, |
| 55 | enodes); |
| 56 | } |
| 57 | |
| 58 | void DRMInputHandler::seteleMap(std::map<int,Element* >& ele, std::map<int,Vector*>& stor, std::map<int,int>& stor2) |
| 59 | { |
no test coverage detected