422{
424
425 if (newValue.empty()) {
431 }
432 return;
433 }
434
436
437
438 G4String::size_type iBegin, iEnd;
439 iBegin = newValue.find_first_not_of(' ');
440 while (iBegin != G4String::npos) {
441 iEnd = newValue.find_first_of(' ',iBegin);
442 if (iEnd == G4String::npos) {
443 iEnd = newValue.length();
444 }
445 const G4String&
name(newValue.substr(iBegin,iEnd-iBegin));
446 iBegin = newValue.find_first_not_of(' ',iEnd);
447 if (iBegin == G4String::npos) {
450 "WARNING: G4VisCommandSetTouchable::SetNewValue"
451 "\n A pair not found. (There should be an even number of parameters.)"
452 "\n Command ignored."
454 return;
455 }
456 }
457 iEnd = newValue.find_first_of(' ',iBegin);
458 if (iEnd == G4String::npos) {
459 iEnd = newValue.length();
460 }
462 std::istringstream iss(newValue.substr(iBegin,iEnd-iBegin));
463 if (!(iss >> copyNo)) {
466 "WARNING: G4VisCommandSetTouchable::SetNewValue"
467 "\n Error reading copy number - it was not numeric?"
468 "\n Command ignored."
470 return;
471 }
472 }
473 currentTouchablePath.push_back
474 (G4ModelingParameters::PVNameCopyNo(name,copyNo));
475 iBegin = newValue.find_first_not_of(' ',iEnd);
476 }
477
478
479 G4bool successful =
false;
480 G4TransportationManager* transportationManager =
482 size_t nWorlds = transportationManager->
GetNoWorlds();
483 std::vector<G4VPhysicalVolume*>::iterator iterWorld =
485 for (size_t i = 0; i < nWorlds; ++i, ++iterWorld) {
486 G4PhysicalVolumeModel pvModel (*iterWorld);
487 G4ModelingParameters mp;
488 pvModel.SetModelingParameters (&mp);
489 G4TouchablePropertiesScene scene (&pvModel,currentTouchablePath);
490 pvModel.DescribeYourselfTo (scene);
491 if (scene.GetFoundTouchableProperties().fpTouchablePV) {
492 successful = true;
494 break;
495 }
496 }
497
498 if (successful) {
503 return;
504 }
505 } else {
508 "WARNING: G4VisCommandSetTouchable::SetNewValue"
509 "\n Touchable not found."
511 return;
512 }
513 }
514}
G4GLOB_DLL std::ostream G4cout
std::vector< PVNameCopyNo > PVNameCopyNoPath
static G4TransportationManager * GetTransportationManager()
std::vector< G4VPhysicalVolume * >::iterator GetWorldsIterator()
std::size_t GetNoWorlds() const
static G4VisManager * fpVisManager
static G4PhysicalVolumeModel::TouchableProperties fCurrentTouchableProperties
const char * name(G4int ptype)