485 {
487 fpCommand = new G4UIcommand("/vis/specify", this);
488 fpCommand->SetGuidance
489 ("Draws logical volume with Boolean components, voxels and readout geometry.");
490 fpCommand->SetGuidance
491 ("Synonymous with \"/vis/drawLogicalVolume\".");
492 fpCommand->SetGuidance
493 ("Creates a scene consisting of this logical volume and asks the"
494 "\n current viewer to draw it to the specified depth of descent"
495 "\n showing boolean components (if any), voxels (if any),"
496 "\n readout geometry (if any), local axes and overlaps (if any),"
497 "\n under control of the appropriate flag.");
498 fpCommand->SetGuidance
499 ("Note: voxels are not constructed until start of run - /run/beamOn."
500 "\n (For voxels without a run, \"/run/beamOn 0\".)");
501 fpCommand->SetGuidance("The scene becomes current.");
502 G4UIparameter* parameter;
503 parameter = new G4UIparameter("logical-volume-name", 's', omitable = false);
504 fpCommand->SetParameter(parameter);
505 parameter = new G4UIparameter("depth-of-descent", 'i', omitable = true);
507 fpCommand->SetParameter(parameter);
508 parameter = new G4UIparameter("booleans-flag", 'b', omitable = true);
510 fpCommand->SetParameter(parameter);
511 parameter = new G4UIparameter("voxels-flag", 'b', omitable = true);
513 fpCommand->SetParameter(parameter);
514 parameter = new G4UIparameter("readout-flag", 'b', omitable = true);
516 fpCommand->SetParameter(parameter);
517 parameter = new G4UIparameter("axes-flag", 'b', omitable = true);
519 parameter -> SetGuidance ("Set \"false\" to suppress axes.");
520 fpCommand->SetParameter(parameter);
521 parameter = new G4UIparameter("check-overlap-flag", 'b', omitable = true);
523 parameter -> SetGuidance ("Set \"false\" to suppress overlap check.");
524 fpCommand->SetParameter(parameter);
525}
void SetDefaultValue(const char *theDefaultValue)