53 fpCommand->SetGuidance
54 (
"Defines number of line segments per circle for drawing 3D arrows"
55 " for future \"/vis/scene/add/\" commands.");
56 fpCommand->SetParameterName (
"number", omitable =
true);
57 fpCommand->SetDefaultValue (6);
58 fpCommand->SetRange(
"number >= 3");
79 "Number of line segments per circle for drawing 3D arrows for future"
80 "\n \"/vis/scene/add/\" commands has been set to "
91 fpCommand =
new G4UIcommand(
"/vis/set/colour",
this);
92 fpCommand->SetGuidance
93 (
"Defines colour and opacity for future \"/vis/scene/add/\" commands.");
94 fpCommand->SetGuidance
95 (
"(Except \"/vis/scene/add/text\" commands - see \"/vis/set/textColour\".)");
97 fpCommand->SetGuidance(
"Default: white and opaque.");
101 (
"Red component or a string, e.g., \"cyan\" (green and blue parameters are ignored).");
103 fpCommand->SetParameter (parameter);
104 parameter =
new G4UIparameter (
"green",
'd', omitable =
true);
106 fpCommand->SetParameter (parameter);
107 parameter =
new G4UIparameter (
"blue",
'd', omitable =
true);
109 fpCommand->SetParameter (parameter);
110 parameter =
new G4UIparameter (
"alpha",
'd', omitable =
true);
113 fpCommand->SetParameter (parameter);
132 std::istringstream iss(newValue);
133 iss >> redOrString >> green >> blue >> opacity;
139 "Colour for future \"/vis/scene/add/\" commands has been set to "
141 ".\n(Except \"/vis/scene/add/text\" commands - use \"/vis/set/textColour\".)"
151 fpCommand =
new G4UIcommand(
"/vis/set/extentForField",
this);
152 fpCommand->SetGuidance
153 (
"Sets an extent for future \"/vis/scene/add/*Field\" commands.");
154 fpCommand->SetGuidance
155 (
"The default is a null extent, which is interpreted by the commands as the"
156 "\nextent of the whole scene.");
158 parameter =
new G4UIparameter (
"xmin",
'd', omitable =
false);
159 fpCommand->SetParameter (parameter);
160 parameter =
new G4UIparameter (
"xmax",
'd', omitable =
false);
161 fpCommand->SetParameter (parameter);
162 parameter =
new G4UIparameter (
"ymin",
'd', omitable =
false);
163 fpCommand->SetParameter (parameter);
164 parameter =
new G4UIparameter (
"ymax",
'd', omitable =
false);
165 fpCommand->SetParameter (parameter);
166 parameter =
new G4UIparameter (
"zmin",
'd', omitable =
false);
167 fpCommand->SetParameter (parameter);
168 parameter =
new G4UIparameter (
"zmax",
'd', omitable =
false);
169 fpCommand->SetParameter (parameter);
170 parameter =
new G4UIparameter (
"unit",
's', omitable =
false);
171 fpCommand->SetParameter (parameter);
188 G4double xmin, xmax, ymin, ymax, zmin, zmax;
190 std::istringstream iss(newValue);
191 iss >> xmin >> xmax >> ymin >> ymax >> zmin >> zmax >> unitString;
193 xmin *= unit; xmax *= unit;
194 ymin *= unit; ymax *= unit;
195 zmin *= unit; zmax *= unit;
202 "Extent for future \"/vis/scene/add/*Field\" commands has been set to "
204 <<
"\nVolume for field has been cleared."
215 fpCommand->SetGuidance
216 (
"Defines line width for future \"/vis/scene/add/\" commands."
217 "\nSee \"/vis/viewer/set/lineWidth\" for more information.");
218 fpCommand->SetParameterName (
"lineWidth", omitable =
true);
219 fpCommand->SetDefaultValue (1.);
220 fpCommand->SetRange(
"lineWidth >= 1.");
241 "Line width for *future* \"/vis/scene/add/\" commands has been set to "
243 "\nSee \"/vis/viewer/set/lineWidth\" for more information."
253 fpCommand =
new G4UIcommand(
"/vis/set/textColour",
this);
254 fpCommand->SetGuidance
255 (
"Defines colour and opacity for future \"/vis/scene/add/text\" commands.");
257 fpCommand->SetGuidance(
"Default: blue and opaque.");
261 (
"Red component or a string, e.g., \"cyan\" (green and blue parameters are ignored).");
263 fpCommand->SetParameter (parameter);
264 parameter =
new G4UIparameter (
"green",
'd', omitable =
true);
266 fpCommand->SetParameter (parameter);
267 parameter =
new G4UIparameter (
"blue",
'd', omitable =
true);
269 fpCommand->SetParameter (parameter);
270 parameter =
new G4UIparameter (
"alpha",
'd', omitable =
true);
273 fpCommand->SetParameter (parameter);
292 std::istringstream iss(newValue);
293 iss >> redOrString >> green >> blue >> opacity;
299 "Colour for future \"/vis/scene/add/text\" commands has been set to "
311 fpCommand->SetGuidance
312 (
"Defines layout future \"/vis/scene/add/text\" commands.");
313 fpCommand->SetGuidance
314 (
"\"left\" (default) for left justification to provided coordinate.");
315 fpCommand->SetGuidance
316 (
"\"centre\" or \"center\" for text centered on provided coordinate.");
317 fpCommand->SetGuidance
318 (
"\"right\" for right justification to provided coordinate.");
319 fpCommand->SetGuidance(
"Default: left.");
320 fpCommand->SetParameterName(
"layout", omitable =
true);
321 fpCommand->SetCandidates (
"left centre center right");
322 fpCommand->SetDefaultValue (
"left");
339 else if (newValue ==
"centre" || newValue ==
"center")
347 G4cout <<
"Text layout (for future \"text\" commands) has been set to \""
359 fpCommand->SetGuidance
360 (
"Defines text size (pixels) for future \"/vis/scene/add/\" commands.");
361 fpCommand->SetParameterName (
"textSize", omitable =
true);
362 fpCommand->SetDefaultValue (12.);
363 fpCommand->SetRange(
"textSize >= 8.");
384 "Text size for future \"/vis/scene/add/\" commands has been set to "
396 fpCommand =
new G4UIcommand(
"/vis/set/touchable",
this);
397 fpCommand->SetGuidance
398 (
"Defines touchable for future \"/vis/touchable/set/\" commands.");
399 fpCommand->SetGuidance
400 (
"Please provide a list of space-separated physical volume names and"
401 "\ncopy number pairs starting at the world volume, e.g:"
402 "\n /vis/set/touchable World 0 Envelope 0 Shape1 0"
403 "\n(To get list of touchables, use \"/vis/drawTree\")"
404 "\n(To save, use \"/vis/viewer/save\")");
405 parameter =
new G4UIparameter (
"list",
's', omitable =
true);
407 (
"List of physical volume names and copy number pairs");
408 fpCommand->SetParameter (parameter);
425 if (newValue.empty()) {
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();
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."
457 iEnd = newValue.find_first_of(
' ',iBegin);
458 if (iEnd == G4String::npos) {
459 iEnd = newValue.length();
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."
473 currentTouchablePath.push_back
475 iBegin = newValue.find_first_not_of(
' ',iEnd);
479 G4bool successful =
false;
482 size_t nWorlds = transportationManager->
GetNoWorlds();
483 std::vector<G4VPhysicalVolume*>::iterator iterWorld =
485 for (
size_t i = 0; i < nWorlds; ++i, ++iterWorld) {
508 "WARNING: G4VisCommandSetTouchable::SetNewValue"
509 "\n Touchable not found."
522 fpCommand =
new G4UIcommand(
"/vis/set/volumeForField",
this);
523 fpCommand->SetGuidance
524 (
"Sets a volume for \"/vis/scene/add/*Field\" commands.");
525 fpCommand->SetGuidance
526 (
"Takes a volume name or a /regular expression/ -- see guidance for"
527 "\n\"/vis/drawVolume\"");
528 parameter =
new G4UIparameter (
"physical-volume-name",
's', omitable =
false);
529 fpCommand -> SetParameter (parameter);
530 parameter =
new G4UIparameter (
"copy-no",
'i', omitable =
true);
531 parameter -> SetGuidance (
"If negative, matches any copy no.");
532 parameter -> SetDefaultValue (-1);
533 fpCommand -> SetParameter (parameter);
534 parameter =
new G4UIparameter (
"draw",
'b', omitable =
true);
535 parameter -> SetGuidance (
"If true, draw extent of found volumes.");
536 parameter -> SetDefaultValue (
false);
537 fpCommand -> SetParameter (parameter);
556 std::istringstream is (newValue);
557 is >> name >> copyNo >> drawString;
562 size_t nWorlds = transportationManager->
GetNoWorlds();
563 std::vector<G4VPhysicalVolume*>::iterator iterWorld =
567 for (
size_t i = 0; i < nWorlds; ++i, ++iterWorld) {
574 for (
const auto& findings: searchScene.
GetFindings()) {
576 G4VisExtent extent = findings.fpFoundPV->GetLogicalVolume()->GetSolid()->GetExtent();
577 extent.
Transform(findings.fFoundObjectTransformation);
584 G4warn <<
"ERROR: Volume \"" << name <<
"\"";
586 G4warn <<
", copy no. " << copyNo <<
",";
600 <<
"\"" << findings.fpFoundPV->GetName()
601 <<
"\", copy no. " << findings.fFoundPVCopyNo
602 <<
", found\nin searched volume \""
603 << findings.fpSearchPV->GetName()
604 <<
"\" at depth " << findings.fFoundDepth
605 <<
",\nbase path: \"" << findings.fFoundBasePVPath
606 <<
"\",\nand has been set as volume for field."
G4GLOB_DLL std::ostream G4cout
void AccrueBoundingExtent(const G4VisExtent &)
const G4VisExtent & GetExtent() const
std::vector< PVNameCopyNo > PVNameCopyNoPath
void DescribeYourselfTo(G4VGraphicsScene &)
const std::vector< Findings > & GetFindings() const
const G4PhysicalVolumeModel::TouchableProperties & GetFoundTouchableProperties() const
static G4TransportationManager * GetTransportationManager()
std::vector< G4VPhysicalVolume * >::iterator GetWorldsIterator()
std::size_t GetNoWorlds() const
static G4double ValueOf(const char *unitName)
static G4bool ConvertToBool(const char *st)
void SetDefaultValue(const char *theDefaultValue)
void SetGuidance(const char *theGuidance)
void SetModelingParameters(const G4ModelingParameters *)
static G4double fCurrentTextSize
static G4Colour fCurrentTextColour
static std::vector< G4PhysicalVolumesSearchScene::Findings > fCurrrentPVFindingsForField
void ConvertToColour(G4Colour &colour, const G4String &redOrString, G4double green, G4double blue, G4double opacity)
static G4VisManager * fpVisManager
static G4VisExtent fCurrentExtentForField
void DrawExtent(const G4VisExtent &)
const G4String & ConvertToColourGuidance()
static G4int fCurrentArrow3DLineSegmentsPerCircle
static G4PhysicalVolumeModel::TouchableProperties fCurrentTouchableProperties
static G4Text::Layout fCurrentTextLayout
static G4double fCurrentLineWidth
static G4Colour fCurrentColour
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSetArrow3DLineSegmentsPerCircle()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSetArrow3DLineSegmentsPerCircle()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSetColour()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSetExtentForField()
G4String GetCurrentValue(G4UIcommand *command)
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSetExtentForField()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSetLineWidth()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSetLineWidth()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSetTextColour()
virtual ~G4VisCommandSetTextColour()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4VisCommandSetTextLayout()
virtual ~G4VisCommandSetTextLayout()
G4String GetCurrentValue(G4UIcommand *command)
void SetNewValue(G4UIcommand *command, G4String newValue)
G4VisCommandSetTextSize()
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSetTextSize()
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSetTouchable()
virtual ~G4VisCommandSetTouchable()
void SetNewValue(G4UIcommand *command, G4String newValue)
G4String GetCurrentValue(G4UIcommand *command)
G4VisCommandSetVolumeForField()
G4String GetCurrentValue(G4UIcommand *command)
void SetNewValue(G4UIcommand *command, G4String newValue)
virtual ~G4VisCommandSetVolumeForField()
G4VisExtent & Transform(const G4Transform3D &)
G4VPhysicalVolume * fpTouchablePV