156{
159
161
162 G4TransportationManager* transportationManager =
164
165 size_t nWorlds = transportationManager->
GetNoWorlds();
166
168 if (!world) {
171 "ERROR: G4VisCommandsTouchable::SetNewValue:"
172 "\n No world. Maybe the geometry has not yet been defined."
173 "\n Try \"/run/initialize\""
175 }
176 return;
177 }
178
179 if (command == fpCommandDump) {
180
181 G4PhysicalVolumeModel::TouchableProperties properties =
184
186 G4PhysicalVolumeModel tempPVModel
190 nullptr,
191 true,
193 const std::map<G4String,G4AttDef>* attDefs = tempPVModel.GetAttDefs();
194 std::vector<G4AttValue>* attValues = tempPVModel.CreateCurrentAttValues();
195 G4cout << G4AttCheck(attValues,attDefs);
196 delete attValues;
199 if (polyhedron) {
200 polyhedron->SetVisAttributes(lv->GetVisAttributes());
201 G4cout <<
"\nLocal polyhedron coordinates:\n" << *polyhedron;
202 const G4Transform3D& transform = tempPVModel.GetCurrentTransform();
203 polyhedron->Transform(transform);
204 G4cout <<
"\nGlobal polyhedron coordinates:\n" << *polyhedron;
205 }
206 } else {
208 }
209 return;
210
211 } else if (command == fpCommandFindPath) {
212
213 G4String pvName;
215 std::istringstream iss(newValue);
216 iss >> pvName >> copyNo;
217 std::vector<G4PhysicalVolumesSearchScene::Findings> findingsVector;
218 std::vector<G4VPhysicalVolume*>::iterator iterWorld =
220 for (size_t i = 0; i < nWorlds; ++i, ++iterWorld) {
221 G4PhysicalVolumeModel searchModel (*iterWorld);
222 G4ModelingParameters mp;
223 searchModel.SetModelingParameters (&mp);
224
225 G4PhysicalVolumesSearchScene searchScene (&searchModel, pvName, copyNo);
226 searchModel.DescribeYourselfTo (searchScene);
227 for (const auto& findings: searchScene.GetFindings()) {
228 findingsVector.push_back(findings);
229 }
230 }
231 for (const auto& findings: findingsVector) {
233 << findings.fFoundBasePVPath
234 << ' ' << findings.fpFoundPV->GetName()
235 << ' ' << findings.fFoundPVCopyNo
236 << " (mother logical volume: "
237 << findings.fpFoundPV->GetMotherLogical()->GetName()
238 << ')'
240 }
241 if (findingsVector.size()) {
243 << "Use this to set a particular touchable with \"/vis/set/touchable <path>\""
244 << "\nor to see overlaps: \"/vis/drawLogicalVolume <mother-logical-volume-name>\""
246 } else {
248 if (copyNo >= 0)
G4warn <<
':' << copyNo;
250 }
251 return;
252 }
253
254 G4VViewer* currentViewer =
fpVisManager -> GetCurrentViewer ();
255 if (!currentViewer) {
258 "ERROR: No current viewer - \"/vis/viewer/list\" to see possibilities."
260 }
261 return;
262 }
263
264 G4Scene* currentScene =
fpVisManager->GetCurrentScene();
265 if (!currentScene) {
268 "ERROR: No current scene - \"/vis/scene/list\" to see possibilities."
270 }
271 return;
272 }
273
274 if (command == fpCommandCentreOn || command == fpCommandCentreAndZoomInOn) {
275
276
277 std::vector<std::vector<G4PhysicalVolumeModel::G4PhysicalVolumeNodeID>> touchables;
278
279 G4PhysicalVolumeModel::TouchableProperties properties =
282
284 G4PhysicalVolumeModel tempPVModel
288 nullptr,
289 true,
292
293 G4Scene tempScene("Centre Scene");
294 G4bool successful = tempScene.AddRunDurationModel(&tempPVModel,warn);
295 if (!successful) return;
299 << ",\n has been added to temporary scene \"" << tempScene.GetName() << "\"."
301 }
302
303 const G4VisExtent& newExtent = tempScene.GetExtent();
306 G4ViewParameters newVP = saveVP;
307 if (command == fpCommandCentreAndZoomInOn) {
308
312 }
313
316
317
321
322 Twinkle(currentViewer,newVP,touchables);
324
327 <<
"Viewer \"" << currentViewer->
GetName()
328 << "\" centred ";
329 if (fpCommandCentreAndZoomInOn) {
330 G4cout <<
"and zoomed in";
331 }
334 }
336 } else {
338 }
339 return;
340
341 } else if (command == fpCommandDraw) {
342
343 G4PhysicalVolumeModel::TouchableProperties properties =
346
348 G4PhysicalVolumeModel* pvModel = new G4PhysicalVolumeModel
352 nullptr,
353 true,
355
360
361 if (successful) {
362 if (fpCommandDraw->GetNewBoolValue(newValue)) {
363 const auto& extent = pvModel->
GetExtent();
364 const G4double halfX = (extent.GetXmax()-extent.GetXmin())/2.;
365 const G4double halfY = (extent.GetYmax()-extent.GetYmin())/2.;
366 const G4double halfZ = (extent.GetZmax()-extent.GetZmin())/2.;
367 G4Box extentBox("extent",halfX,halfY,halfZ);
368 G4VisAttributes extentVA;
371 }
374 <<
"\", copy no. " << properties.
fCopyNo <<
" drawn";
375 if (fpCommandDraw->GetNewBoolValue(newValue)) {
376 G4cout <<
" with extent box";
377 }
379 }
380 } else {
382 }
383 } else {
385 }
386 return;
387
388 } else if (command == fpCommandExtentForField) {
389
390 G4PhysicalVolumeModel::TouchableProperties properties =
393 G4VisExtent extent
399 G4cout <<
"Extent for field set to " << extent
400 << "\nVolume for field has been cleared."
402 }
403 if (fpCommandExtentForField->GetNewBoolValue(newValue)) {
405 }
406 } else {
408 }
409 return;
410
411 } else if (command == fpCommandLocalAxes) {
412
413 G4PhysicalVolumeModel::TouchableProperties properties =
419 const G4double intLog10LengthMax = std::floor(std::log10(lengthMax));
420 G4double length = std::pow(10,intLog10LengthMax);
421 if (5.*length < lengthMax) length *= 5.;
422 else if (2.*length < lengthMax) length *= 2.;
423 G4AxesModel axesModel(0.,0.,0.,length,transform);
424 axesModel.SetGlobalTag("LocalAxesModel");
425 axesModel.DescribeYourselfTo(*
fpVisManager->GetCurrentSceneHandler());
427 } else {
429 }
430 return;
431
432 } else if (command == fpCommandShowExtent) {
433
434 G4PhysicalVolumeModel::TouchableProperties properties =
437 G4VisExtent extent
441 if (fpCommandShowExtent->GetNewBoolValue(newValue))
DrawExtent(extent);
442 } else {
444 }
445 return;
446
447 } else if (command == fpCommandTwinkle) {
448
449 G4PhysicalVolumeModel::TouchableProperties properties =
452 std::vector<std::vector<G4PhysicalVolumeModel::G4PhysicalVolumeNodeID>> touchables;
460 } else {
462 }
463 return;
464
465 } else if (command == fpCommandVolumeForField) {
466
467 G4PhysicalVolumeModel::TouchableProperties properties =
470 G4VisExtent extent
476 (G4PhysicalVolumesSearchScene::Findings(properties));
483 }
484 if (fpCommandVolumeForField->GetNewBoolValue(newValue)) {
486 }
487 } else {
489 }
490 return;
491
492 } else {
493
496 "ERROR: G4VisCommandsTouchable::SetNewValue: unrecognised command."
498 }
499 return;
500 }
501}
HepGeom::Point3D< G4double > G4Point3D
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cout
G4VSolid * GetSolid() const
G4bool AddRunDurationModel(G4VModel *, G4bool warn=false)
const G4VisExtent & GetExtent() const
const G4Point3D & GetStandardTargetPoint() const
static G4TransportationManager * GetTransportationManager()
std::vector< G4VPhysicalVolume * >::iterator GetWorldsIterator()
std::size_t GetNoWorlds() const
G4int ApplyCommand(const char *aCommand)
static G4UImanager * GetUIpointer()
const G4VisExtent & GetExtent() const
virtual void SetCopyNo(G4int CopyNo)=0
G4LogicalVolume * GetLogicalVolume() const
const G4String & GetName() const
virtual G4VisExtent GetExtent() const
virtual G4Polyhedron * GetPolyhedron() const
const G4String & GetName() const
const G4ViewParameters & GetViewParameters() const
void G4VisCommandsSceneAddUnsuccessful(G4VisManager::Verbosity verbosity)
void InterpolateToNewView(G4VViewer *currentViewer, const G4ViewParameters &oldVP, const G4ViewParameters &newVP, const G4int nInterpolationPoints=50, const G4int waitTimePerPointmilliseconds=20, const G4String &exportString="")
static std::vector< G4PhysicalVolumesSearchScene::Findings > fCurrrentPVFindingsForField
static G4VisManager * fpVisManager
static G4VisExtent fCurrentExtentForField
void DrawExtent(const G4VisExtent &)
void SetViewParameters(G4VViewer *viewer, const G4ViewParameters &viewParams)
static G4PhysicalVolumeModel::TouchableProperties fCurrentTouchableProperties
void Twinkle(G4VViewer *currentViewer, const G4ViewParameters &baseVP, const std::vector< std::vector< G4PhysicalVolumeModel::G4PhysicalVolumeNodeID > > &paths)
void SetCurrentTargetPoint(const G4Point3D ¤tTargetPoint)
void SetZoomFactor(G4double zoomFactor)
void SetForceWireframe(G4bool=true)
G4double GetExtentRadius() const
G4VisExtent & Transform(const G4Transform3D &)
const G4Point3D & GetExtentCentre() const
G4PhysicalVolumeModel::TouchableProperties FindTouchableProperties(G4ModelingParameters::PVNameCopyNoPath path)
G4VPhysicalVolume * fpTouchablePV
std::vector< G4PhysicalVolumeNodeID > fTouchableFullPVPath
std::vector< G4PhysicalVolumeNodeID > fTouchableBaseFullPVPath
G4Transform3D fTouchableGlobalTransform