278{
279 if(mediumMaterial == nullptr)
280 {
282 "Pointer to medium material is not valid!");
283 }
284 if(solidMaterial == nullptr)
285 {
287 "Pointer to solid material is not valid!");
288 }
289
290 solid_material = solidMaterial;
291
292 world_box = new G4Box("TessellatedWorldBox", kInfinity, kInfinity, kInfinity);
293
294 world_volume = new G4LogicalVolume(world_box, mediumMaterial,
295 "TessellatedWorldLV", 0, 0, 0);
297
298 ReadGeom(name + ".geom");
299 ReadTree(name + ".tree");
300
301
302
303 if(world_box->GetXHalfLength() > world_extent.x())
304 {
305 world_box->SetXHalfLength(world_extent.x());
306 }
307 if(world_box->GetYHalfLength() > world_extent.y())
308 {
309 world_box->SetYHalfLength(world_extent.y());
310 }
311 if(world_box->GetZHalfLength() > world_extent.z())
312 {
313 world_box->SetZHalfLength(world_extent.z());
314 }
315
316 return world_volume;
317}
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
CLHEP::Hep3Vector G4ThreeVector