| 50 | HashTable<const cloud*> clouds(db.lookupClass<cloud>()); |
| 51 | |
| 52 | forAllIter(HashTable<const cloud*>, clouds, iter) |
| 53 | { |
| 54 | cloud& c = const_cast<cloud&>(*iter()); |
| 55 | |
| 56 | if (polyMesh::debug) |
| 57 | { |
| 58 | Info<< "Mapping cloud " << c.name() << endl; |
| 59 | } |
| 60 | |
| 61 | c.autoMap(mapper); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 |
no test coverage detected