| 299 | #endif |
| 300 | |
| 301 | void |
| 302 | Geometry::GetFaceArea (MultiFab& area, |
| 303 | const BoxArray& grds, |
| 304 | const DistributionMapping& dm, |
| 305 | int dir, |
| 306 | int ngrow) const |
| 307 | { |
| 308 | BoxArray edge_boxes(grds); |
| 309 | edge_boxes.surroundingNodes(dir); |
| 310 | area.define(edge_boxes,dm,1,ngrow,MFInfo(),FArrayBoxFactory()); |
| 311 | |
| 312 | GetFaceArea(area, dir); |
| 313 | } |
| 314 | |
| 315 | void |
| 316 | Geometry::GetFaceArea (MultiFab& area, |
no test coverage detected