Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // 23 // >> 24 // $Id: G4VisCommandsViewerSet.cc,v 1.21 2003/06/16 17:14:26 gunter Exp $ >> 25 // GEANT4 tag $Name: geant4-06-00 $ 27 26 28 // /vis/viewer/set commands - John Allison 16 27 // /vis/viewer/set commands - John Allison 16th May 2000 29 28 30 #include "G4VisCommandsViewerSet.hh" 29 #include "G4VisCommandsViewerSet.hh" 31 30 32 #include "G4UIcommand.hh" 31 #include "G4UIcommand.hh" 33 #include "G4UIcmdWithoutParameter.hh" << 34 #include "G4UIcmdWithAString.hh" 32 #include "G4UIcmdWithAString.hh" 35 #include "G4UIcmdWithABool.hh" 33 #include "G4UIcmdWithABool.hh" 36 #include "G4UIcmdWithAnInteger.hh" 34 #include "G4UIcmdWithAnInteger.hh" 37 #include "G4UIcmdWithADouble.hh" 35 #include "G4UIcmdWithADouble.hh" 38 #include "G4UIcmdWith3VectorAndUnit.hh" << 39 #include "G4UnitsTable.hh" 36 #include "G4UnitsTable.hh" 40 #include "G4VisManager.hh" 37 #include "G4VisManager.hh" 41 #include "G4Polyhedron.hh" << 42 #include "G4SystemOfUnits.hh" << 43 << 44 #include <sstream> << 45 #include <iomanip> << 46 #include <utility> << 47 << 48 #define G4warn G4cout << 49 38 50 G4VisCommandsViewerSet::G4VisCommandsViewerSet 39 G4VisCommandsViewerSet::G4VisCommandsViewerSet (): 51 fLightsVector (G4ThreeVector(1.,1.,1.)), << 40 fLightsVector (G4ThreeVector(1.,1.,1.)), 52 fUpVector (G4ThreeVector(0.,1.,0.)), << 41 fUpVector (G4ThreeVector(0.,1.,0.)), 53 fViewpointVector (G4ThreeVector(0.,0.,1.)) << 42 fViewpointVector (G4ThreeVector(0.,0.,1.)) 54 { 43 { 55 G4bool omitable; 44 G4bool omitable; 56 G4UIparameter* parameter; 45 G4UIparameter* parameter; 57 46 58 fpCommandAll = new G4UIcmdWithAString ("/vis 47 fpCommandAll = new G4UIcmdWithAString ("/vis/viewer/set/all",this); 59 fpCommandAll->SetGuidance 48 fpCommandAll->SetGuidance 60 ("Copies view parameters."); << 49 ("/vis/viewer/set/all <from-viewer-name>" 61 fpCommandAll->SetGuidance << 50 "\nCopies view parameters (except the autoRefresh status) from" 62 ("Copies ALL view parameters (except the aut << 51 "\n from-viewer to current viewer."); 63 "\nfrom-viewer to current viewer. You may n << 64 fpCommandAll->SetGuidance << 65 ("Note: to copy only the camera-specific par << 66 "\n\"/vis/viewer/copyfrom\"."); << 67 fpCommandAll->SetParameterName ("from-viewer 52 fpCommandAll->SetParameterName ("from-viewer-name",omitable = false); >> 53 viewerNameCommands.push_back (fpCommandAll); 68 54 69 fpCommandAutoRefresh = new G4UIcmdWithABool 55 fpCommandAutoRefresh = new G4UIcmdWithABool 70 ("/vis/viewer/set/autoRefresh",this); << 56 ("/vis/viewer/set/autoRefresh",this); 71 fpCommandAutoRefresh->SetGuidance("Sets auto << 72 fpCommandAutoRefresh->SetGuidance 57 fpCommandAutoRefresh->SetGuidance 73 ("If true, view is automatically refreshed a << 58 ("/vis/viewer/set/autoRefresh [true|false]"); 74 "\nview parameters."); << 59 fpCommandAutoRefresh->SetGuidance >> 60 ("DEPRECATED COMMAND. Will be removed from next major release."); >> 61 fpCommandAutoRefresh->SetGuidance >> 62 ("View is automatically refreshed after a change of view parameters."); 75 fpCommandAutoRefresh->SetParameterName("auto 63 fpCommandAutoRefresh->SetParameterName("auto-refresh",omitable = true); 76 fpCommandAutoRefresh->SetDefaultValue(true); << 64 fpCommandAutoRefresh->SetDefaultValue(false); 77 << 78 fpCommandAuxEdge = new G4UIcmdWithABool << 79 ("/vis/viewer/set/auxiliaryEdge",this); << 80 fpCommandAuxEdge->SetGuidance("Sets visibili << 81 fpCommandAuxEdge->SetGuidance << 82 ("Auxiliary edges, i.e., those that are part << 83 "\nsometimes called soft edges, become visi << 84 fpCommandAuxEdge->SetParameterName("edge",om << 85 fpCommandAuxEdge->SetDefaultValue(true); << 86 << 87 fpCommandBackground = new G4UIcommand << 88 ("/vis/viewer/set/background",this); << 89 fpCommandBackground->SetGuidance << 90 ("Set background colour and transparency (de << 91 fpCommandBackground->SetGuidance(ConvertToCo << 92 parameter = new G4UIparameter("red_or_string << 93 parameter -> SetDefaultValue ("0."); << 94 fpCommandBackground -> SetParameter (paramet << 95 parameter = new G4UIparameter("green", 'd', << 96 parameter -> SetDefaultValue (0.); << 97 fpCommandBackground -> SetParameter (paramet << 98 parameter = new G4UIparameter ("blue", 'd', << 99 parameter -> SetDefaultValue (0.); << 100 fpCommandBackground -> SetParameter (paramet << 101 parameter = new G4UIparameter ("opacity", 'd << 102 parameter -> SetDefaultValue (1.); << 103 fpCommandBackground -> SetParameter (paramet << 104 65 105 fpCommandCulling = new G4UIcommand("/vis/vie 66 fpCommandCulling = new G4UIcommand("/vis/viewer/set/culling",this); 106 fpCommandCulling->SetGuidance ("Set culling << 107 fpCommandCulling->SetGuidance << 108 ("\"global\": enables/disables all other cul << 109 fpCommandCulling->SetGuidance 67 fpCommandCulling->SetGuidance 110 ("\"coveredDaughters\": culls, i.e., elimina << 68 ("/vis/viewer/set/culling global|coveredDaughters|invisible|density" 111 "\nbe seen because covered by ancestor volu << 69 " [true|false] [density] [unit]"); 112 "\nand then only if the ancestors are visib << 113 "\nif no sections or cutaways are in operat << 114 "\nimprove the speed of rendering visible v << 115 fpCommandCulling->SetGuidance 70 fpCommandCulling->SetGuidance 116 ("\"invisible\": culls objects with the invi << 71 ("If density option is true, provide threshold density and unit"); 117 fpCommandCulling->SetGuidance 72 fpCommandCulling->SetGuidance 118 ("\"density\": culls volumes with density lo << 73 ("Unit is g/cm3, mg/cm3 or kg/m3"); 119 "\nfor eliminating \"container volumes\" wi << 120 "\nwhose material is usually air. If this << 121 "\ndensity and unit (e.g., g/cm3, mg/cm3 or << 122 ); << 123 parameter = new G4UIparameter("culling-optio 74 parameter = new G4UIparameter("culling-option",'s',omitable = false); 124 parameter->SetParameterCandidates 75 parameter->SetParameterCandidates 125 ("global coveredDaughters invisible density" << 76 ("global coveredDaughters invisible density"); 126 fpCommandCulling->SetParameter(parameter); 77 fpCommandCulling->SetParameter(parameter); 127 parameter = new G4UIparameter("action",'b',o << 78 parameter = new G4UIparameter("flag",'b',omitable = true); 128 parameter->SetDefaultValue(1); << 79 parameter->SetDefaultValue("true"); 129 fpCommandCulling->SetParameter(parameter); 80 fpCommandCulling->SetParameter(parameter); 130 parameter = new G4UIparameter("density-thres << 81 parameter = new G4UIparameter("density",'d',omitable = true); 131 parameter->SetDefaultValue("0.01"); 82 parameter->SetDefaultValue("0.01"); 132 fpCommandCulling->SetParameter(parameter); 83 fpCommandCulling->SetParameter(parameter); 133 parameter = new G4UIparameter("unit",'s',omi 84 parameter = new G4UIparameter("unit",'s',omitable = true); 134 // parameter->SetParameterCandidates ("g/cm3 << 135 // Instead of the above, SetNewValue accepts << 136 parameter->SetDefaultValue("g/cm3"); 85 parameter->SetDefaultValue("g/cm3"); 137 fpCommandCulling->SetParameter(parameter); 86 fpCommandCulling->SetParameter(parameter); 138 87 139 fpCommandCutawayMode = << 140 new G4UIcmdWithAString ("/vis/viewer/set/cut << 141 fpCommandCutawayMode->SetGuidance << 142 ("Sets cutaway mode - add (union) or multipl << 143 fpCommandCutawayMode->SetParameterName ("cut << 144 fpCommandCutawayMode->SetCandidates ("add un << 145 fpCommandCutawayMode->SetDefaultValue("union << 146 << 147 fpCommandDefaultColour = new G4UIcommand << 148 ("/vis/viewer/set/defaultColour",this); << 149 fpCommandDefaultColour->SetGuidance << 150 ("Set defaultColour colour and transparency << 151 fpCommandDefaultColour->SetGuidance(ConvertT << 152 parameter = new G4UIparameter("red_or_string << 153 parameter -> SetDefaultValue ("1."); << 154 fpCommandDefaultColour -> SetParameter (para << 155 parameter = new G4UIparameter("green", 'd', << 156 parameter -> SetDefaultValue (1.); << 157 fpCommandDefaultColour -> SetParameter (para << 158 parameter = new G4UIparameter ("blue", 'd', << 159 parameter -> SetDefaultValue (1.); << 160 fpCommandDefaultColour -> SetParameter (para << 161 parameter = new G4UIparameter ("opacity", 'd << 162 parameter -> SetDefaultValue (1.); << 163 fpCommandDefaultColour -> SetParameter (para << 164 << 165 fpCommandDefaultTextColour = new G4UIcommand << 166 ("/vis/viewer/set/defaultTextColour",this); << 167 fpCommandDefaultTextColour->SetGuidance << 168 ("Set defaultTextColour colour and transpare << 169 fpCommandDefaultTextColour->SetGuidance(Conv << 170 parameter = new G4UIparameter("red_or_string << 171 parameter -> SetDefaultValue ("0."); << 172 fpCommandDefaultTextColour -> SetParameter ( << 173 parameter = new G4UIparameter("green", 'd', << 174 parameter -> SetDefaultValue (0.); << 175 fpCommandDefaultTextColour -> SetParameter ( << 176 parameter = new G4UIparameter ("blue", 'd', << 177 parameter -> SetDefaultValue (1.); << 178 fpCommandDefaultTextColour -> SetParameter ( << 179 parameter = new G4UIparameter ("opacity", 'd << 180 parameter -> SetDefaultValue (1.); << 181 fpCommandDefaultTextColour -> SetParameter ( << 182 << 183 fpCommandEdge = new G4UIcmdWithABool("/vis/v 88 fpCommandEdge = new G4UIcmdWithABool("/vis/viewer/set/edge",this); 184 fpCommandEdge->SetGuidance << 89 fpCommandEdge->SetGuidance("/vis/viewer/set/edge [true|false]"); 185 ("Edges become visible/invisible in surface << 186 fpCommandEdge->SetParameterName("edge",omita 90 fpCommandEdge->SetParameterName("edge",omitable = true); 187 fpCommandEdge->SetDefaultValue(true); 91 fpCommandEdge->SetDefaultValue(true); 188 92 189 fpCommandExplodeFactor = new G4UIcommand << 190 ("/vis/viewer/set/explodeFactor", this); << 191 fpCommandExplodeFactor->SetGuidance << 192 ("Moves top-level drawn volumes by this fact << 193 parameter = new G4UIparameter("explodeFactor << 194 parameter->SetParameterRange("explodeFactor> << 195 parameter->SetDefaultValue(1.); << 196 fpCommandExplodeFactor->SetParameter(paramet << 197 parameter = new G4UIparameter("x",'d',omitab << 198 parameter->SetDefaultValue (0); << 199 parameter->SetGuidance ("Coordinate of << 200 fpCommandExplodeFactor->SetParameter(paramet << 201 parameter = new G4UIparameter("y",'d',omitab << 202 parameter->SetDefaultValue (0); << 203 parameter->SetGuidance ("Coordinate of << 204 fpCommandExplodeFactor->SetParameter(paramet << 205 parameter = new G4UIparameter("z",'d',omitab << 206 parameter->SetDefaultValue (0); << 207 parameter->SetGuidance ("Coordinate of << 208 fpCommandExplodeFactor->SetParameter(paramet << 209 parameter = new G4UIparameter("unit",'s',omi << 210 parameter->SetDefaultValue ("m"); << 211 parameter->SetGuidance ("Unit of explod << 212 fpCommandExplodeFactor->SetParameter(paramet << 213 << 214 fpCommandGlobalLineWidthScale = new G4UIcmdW << 215 ("/vis/viewer/set/globalLineWidthScale", thi << 216 fpCommandGlobalLineWidthScale->SetGuidance << 217 ("Multiplies line widths by this factor."); << 218 fpCommandGlobalLineWidthScale-> << 219 SetParameterName("scale-factor", omitable=tr << 220 fpCommandGlobalLineWidthScale->SetDefaultVal << 221 << 222 fpCommandGlobalMarkerScale = new G4UIcmdWith 93 fpCommandGlobalMarkerScale = new G4UIcmdWithADouble 223 ("/vis/viewer/set/globalMarkerScale", this); << 94 ("/vis/viewer/set/globalMarkerScale", this); 224 fpCommandGlobalMarkerScale->SetGuidance << 95 fpCommandGlobalMarkerScale -> SetGuidance 225 ("Multiplies marker sizes by this factor."); << 96 ("/vis/viewer/set/globalMarkerScale [<scale-factor>]"); 226 fpCommandGlobalMarkerScale-> << 97 fpCommandGlobalMarkerScale -> SetGuidance 227 SetParameterName("scale-factor", omitable=tr << 98 ("default: 1"); >> 99 fpCommandGlobalMarkerScale -> SetGuidance >> 100 ("Multiplies marker sizes by this factor."); >> 101 fpCommandGlobalMarkerScale -> SetParameterName("scale-factorr", >> 102 omitable=true); 228 fpCommandGlobalMarkerScale->SetDefaultValue( 103 fpCommandGlobalMarkerScale->SetDefaultValue(1.); 229 104 230 fpCommandHiddenEdge = 105 fpCommandHiddenEdge = 231 new G4UIcmdWithABool("/vis/viewer/set/hidden << 106 new G4UIcmdWithABool("/vis/viewer/set/hiddenEdge",this); 232 fpCommandHiddenEdge->SetGuidance << 107 fpCommandHiddenEdge->SetGuidance("/vis/viewer/set/edge [true|false]"); 233 ("Edges become hidden/seen in wireframe or s << 234 fpCommandHiddenEdge->SetParameterName("hidde 108 fpCommandHiddenEdge->SetParameterName("hidden-edge",omitable = true); 235 fpCommandHiddenEdge->SetDefaultValue(true); 109 fpCommandHiddenEdge->SetDefaultValue(true); 236 110 237 fpCommandHiddenMarker = 111 fpCommandHiddenMarker = 238 new G4UIcmdWithABool("/vis/viewer/set/hidden << 112 new G4UIcmdWithABool("/vis/viewer/set/hiddenMarker",this); 239 fpCommandHiddenMarker->SetGuidance 113 fpCommandHiddenMarker->SetGuidance 240 ("If true, closer objects hide markers. Othe << 114 ("/vis/viewer/set/hiddenMarker [true|false]"); 241 fpCommandHiddenMarker->SetParameterName("hid 115 fpCommandHiddenMarker->SetParameterName("hidden-marker",omitable = true); 242 fpCommandHiddenMarker->SetDefaultValue(true) 116 fpCommandHiddenMarker->SetDefaultValue(true); 243 117 244 fpCommandLightsMove = new G4UIcmdWithAString 118 fpCommandLightsMove = new G4UIcmdWithAString 245 ("/vis/viewer/set/lightsMove",this); << 119 ("/vis/viewer/set/lightsMove",this); >> 120 fpCommandLightsMove->SetGuidance >> 121 ("/vis/viewer/set/lightsMove with-camera|with-object"); 246 fpCommandLightsMove->SetGuidance 122 fpCommandLightsMove->SetGuidance 247 ("Lights move with camera or with object"); << 123 ("Note: parameter will be parsed for \"cam\" or \"obj\"."); 248 fpCommandLightsMove->SetParameterName("light 124 fpCommandLightsMove->SetParameterName("lightsMove",omitable = false); 249 fpCommandLightsMove->SetCandidates << 125 // fpCommandLightsMove->SetCandidates("move-with-camera move-with-object"); 250 ("cam camera with-camera obj object with-obj << 126 // Own parsing. 251 127 252 fpCommandLightsThetaPhi = new G4UIcommand 128 fpCommandLightsThetaPhi = new G4UIcommand 253 ("/vis/viewer/set/lightsThetaPhi", this); << 129 ("/vis/viewer/set/lightsThetaPhi", this); 254 fpCommandLightsThetaPhi->SetGuidance << 130 fpCommandLightsThetaPhi -> SetGuidance 255 ("Set direction from target to lights."); << 131 ("/vis/viewer/set/lightsThetaPhi [<theta>] [<phi>] [deg|rad]"); >> 132 fpCommandLightsThetaPhi -> SetGuidance >> 133 ("Set direction from target to lights."); 256 parameter = new G4UIparameter("theta", 'd', 134 parameter = new G4UIparameter("theta", 'd', omitable = true); 257 parameter -> SetDefaultValue(60.); << 135 parameter -> SetCurrentAsDefault (true); 258 fpCommandLightsThetaPhi -> SetParameter (par 136 fpCommandLightsThetaPhi -> SetParameter (parameter); 259 parameter = new G4UIparameter("phi", 'd', om 137 parameter = new G4UIparameter("phi", 'd', omitable = true); 260 parameter -> SetDefaultValue(45.); << 138 parameter -> SetCurrentAsDefault (true); 261 fpCommandLightsThetaPhi -> SetParameter (par 139 fpCommandLightsThetaPhi -> SetParameter (parameter); 262 parameter = new G4UIparameter ("unit", 's', 140 parameter = new G4UIparameter ("unit", 's', omitable = true); 263 parameter -> SetDefaultValue ("deg"); 141 parameter -> SetDefaultValue ("deg"); 264 fpCommandLightsThetaPhi -> SetParameter (par 142 fpCommandLightsThetaPhi -> SetParameter (parameter); 265 143 266 fpCommandLightsVector = new G4UIcommand 144 fpCommandLightsVector = new G4UIcommand 267 ("/vis/viewer/set/lightsVector", this); << 145 ("/vis/viewer/set/lightsVector", this); 268 fpCommandLightsVector->SetGuidance << 146 fpCommandLightsVector -> SetGuidance 269 ("Set direction from target to lights."); << 147 ("/vis/viewer/set/lightsVector [<x>] [<y>] [<z>]"); >> 148 fpCommandLightsVector -> SetGuidance >> 149 ("Set direction from target to lights."); 270 parameter = new G4UIparameter("x", 'd', omit 150 parameter = new G4UIparameter("x", 'd', omitable = true); 271 parameter -> SetDefaultValue (1); << 151 parameter -> SetCurrentAsDefault (true); 272 fpCommandLightsVector -> SetParameter (param 152 fpCommandLightsVector -> SetParameter (parameter); 273 parameter = new G4UIparameter("y", 'd', omit 153 parameter = new G4UIparameter("y", 'd', omitable = true); 274 parameter -> SetDefaultValue (1); << 154 parameter -> SetCurrentAsDefault (true); 275 fpCommandLightsVector -> SetParameter (param 155 fpCommandLightsVector -> SetParameter (parameter); 276 parameter = new G4UIparameter ("z", 'd', omi 156 parameter = new G4UIparameter ("z", 'd', omitable = true); 277 parameter -> SetDefaultValue (1); << 157 parameter -> SetCurrentAsDefault (true); 278 fpCommandLightsVector -> SetParameter (param 158 fpCommandLightsVector -> SetParameter (parameter); 279 159 280 fpCommandLineSegments = new G4UIcmdWithAnInt 160 fpCommandLineSegments = new G4UIcmdWithAnInteger 281 ("/vis/viewer/set/lineSegmentsPerCircle",thi << 161 ("/vis/viewer/set/lineSegmentsPerCircle",this); 282 fpCommandLineSegments->SetGuidance 162 fpCommandLineSegments->SetGuidance 283 ("Set number of sides per circle for polygon << 163 ("/vis/viewer/set/lineSegmentsPerCircle [<number-of-sides-per-circle>]"); 284 fpCommandLineSegments->SetGuidance 164 fpCommandLineSegments->SetGuidance 285 ("Refers to graphical representation of obje << 165 (" Number of sides per circle in polygon/polyhedron graphical" >> 166 "\nrepresentation of objects with curved lines/surfaces."); 286 fpCommandLineSegments->SetParameterName("lin 167 fpCommandLineSegments->SetParameterName("line-segments",omitable = true); 287 fpCommandLineSegments->SetDefaultValue(24); 168 fpCommandLineSegments->SetDefaultValue(24); 288 169 289 fpCommandLineWidth = new G4UIcmdWithoutParam << 290 ("/vis/viewer/set/lineWidth",this); << 291 fpCommandLineWidth->SetGuidance << 292 ("Use \"/vis/viewer/set/globalLineWidthScale << 293 "\nFor trajectories use \"/vis/modeling/tra << 294 "\nFor volumes use \"/vis/geometry/set/line << 295 << 296 fpCommandNumberOfCloudPoints = new G4UIcmdWi << 297 ("/vis/viewer/set/numberOfCloudPoints",this) << 298 fpCommandNumberOfCloudPoints->SetGuidance << 299 ("Set number of points to be used for cloud << 300 fpCommandNumberOfCloudPoints->SetParameterNa << 301 fpCommandNumberOfCloudPoints->SetDefaultValu << 302 << 303 fpCommandPicking = new G4UIcmdWithABool << 304 ("/vis/viewer/set/picking",this); << 305 fpCommandPicking->SetGuidance("Sets picking, << 306 fpCommandPicking->SetGuidance << 307 ("If true, view is set up for picking, if av << 308 fpCommandPicking->SetGuidance << 309 ("You may need to issue \"/vis/viewer/update << 310 fpCommandPicking->SetGuidance << 311 ("For required actions, watch for instructio << 312 fpCommandPicking->SetParameterName("picking" << 313 fpCommandPicking->SetDefaultValue(true); << 314 << 315 fpCommandProjection = new G4UIcommand("/vis/ 170 fpCommandProjection = new G4UIcommand("/vis/viewer/set/projection",this); 316 fpCommandProjection->SetGuidance 171 fpCommandProjection->SetGuidance 317 ("Set projection style - o[rthogonal] or p[e << 172 ("/vis/viewer/set/projection" 318 "\nIf p[erspective], also set field half an << 173 " o[rthogonal]|p[erspective] [<field-half-angle>] [deg|rad]"); >> 174 fpCommandProjection->SetGuidance >> 175 ("Note: 1st parameter will be parsed for first character \"o\" or \"p\"."); >> 176 fpCommandProjection->SetGuidance("Default: orthogonal 30 deg"); 319 parameter = new G4UIparameter("projection",' 177 parameter = new G4UIparameter("projection",'s',omitable = true); 320 parameter->SetParameterCandidates("o orthogo << 321 parameter->SetDefaultValue("orthogonal"); 178 parameter->SetDefaultValue("orthogonal"); 322 fpCommandProjection->SetParameter(parameter) 179 fpCommandProjection->SetParameter(parameter); 323 parameter = new G4UIparameter("field-half-an 180 parameter = new G4UIparameter("field-half-angle",'d',omitable = true); 324 parameter->SetDefaultValue(30.); 181 parameter->SetDefaultValue(30.); 325 //parameter->SetCurrentAsDefault(true); << 326 fpCommandProjection->SetParameter(parameter) 182 fpCommandProjection->SetParameter(parameter); 327 parameter = new G4UIparameter("unit",'s',omi 183 parameter = new G4UIparameter("unit",'s',omitable = true); 328 parameter->SetDefaultValue("deg"); 184 parameter->SetDefaultValue("deg"); 329 //parameter->SetCurrentAsDefault(true); << 330 fpCommandProjection->SetParameter(parameter) 185 fpCommandProjection->SetParameter(parameter); 331 186 332 fpCommandRotationStyle = new G4UIcmdWithAStr << 187 fpCommandSectionPlane = new G4UIcommand 333 ("/vis/viewer/set/rotationStyle",this); << 188 ("/vis/viewer/set/sectionPlane",this); 334 fpCommandRotationStyle->SetGuidance << 335 ("Set style of rotation - constrainUpDirecti << 336 fpCommandRotationStyle->SetGuidance << 337 ("constrainUpDirection: conventional HEP vie << 338 fpCommandRotationStyle->SetGuidance << 339 ("freeRotation: Google-like rotation, using << 340 fpCommandRotationStyle->SetParameterName ("s << 341 fpCommandRotationStyle->SetCandidates("const << 342 << 343 fpCommandSectionPlane = new G4UIcommand("/vi << 344 fpCommandSectionPlane -> SetGuidance 189 fpCommandSectionPlane -> SetGuidance 345 ("Set plane for drawing section (DCUT)."); << 190 ( 346 fpCommandSectionPlane -> SetGuidance << 191 "Set plane for drawing section (DCUT). Specify plane by" 347 ("E.g., for a y-z plane at x = 1 cm:" << 192 "\nx y z units nx ny nz, e.g., for a y-z plane at x = 1 cm:" 348 "\n\"/vis/viewer/set/sectionPlane on 1 0 0 << 193 "\n/vis/viewer/set/sectionPlane on 1 0 0 cm 1 0 0" 349 "\nTo turn off: /vis/viewer/set/sectionPlan << 194 ); 350 parameter = new G4UIparameter("Selector",' 195 parameter = new G4UIparameter("Selector",'c',true); 351 parameter -> SetDefaultValue ("on"); << 196 parameter -> SetDefaultValue ("?"); 352 fpCommandSectionPlane->SetParameter(paramete 197 fpCommandSectionPlane->SetParameter(parameter); 353 parameter = new G4UIparameter("x",'d',omit 198 parameter = new G4UIparameter("x",'d',omitable = true); 354 parameter -> SetDefaultValue (0); 199 parameter -> SetDefaultValue (0); 355 parameter -> SetGuidance ("Coordinate 200 parameter -> SetGuidance ("Coordinate of point on the plane."); 356 fpCommandSectionPlane->SetParameter(paramete 201 fpCommandSectionPlane->SetParameter(parameter); 357 parameter = new G4UIparameter("y",'d',omit 202 parameter = new G4UIparameter("y",'d',omitable = true); 358 parameter -> SetDefaultValue (0); 203 parameter -> SetDefaultValue (0); 359 parameter -> SetGuidance ("Coordinate 204 parameter -> SetGuidance ("Coordinate of point on the plane."); 360 fpCommandSectionPlane->SetParameter(paramete 205 fpCommandSectionPlane->SetParameter(parameter); 361 parameter = new G4UIparameter("z",'d',omit 206 parameter = new G4UIparameter("z",'d',omitable = true); 362 parameter -> SetDefaultValue (0); 207 parameter -> SetDefaultValue (0); 363 parameter -> SetGuidance ("Coordinate 208 parameter -> SetGuidance ("Coordinate of point on the plane."); 364 fpCommandSectionPlane->SetParameter(paramete 209 fpCommandSectionPlane->SetParameter(parameter); 365 parameter = new G4UIparameter("unit",'s',o 210 parameter = new G4UIparameter("unit",'s',omitable = true); 366 parameter -> SetDefaultValue ("m"); << 211 parameter -> SetDefaultValue ("cm"); 367 parameter -> SetGuidance ("Unit of poi 212 parameter -> SetGuidance ("Unit of point on the plane."); 368 fpCommandSectionPlane->SetParameter(paramete 213 fpCommandSectionPlane->SetParameter(parameter); 369 parameter = new G4UIparameter("nx",'d',omi 214 parameter = new G4UIparameter("nx",'d',omitable = true); 370 parameter -> SetDefaultValue (1); 215 parameter -> SetDefaultValue (1); 371 parameter -> SetGuidance ("Component o 216 parameter -> SetGuidance ("Component of plane normal."); 372 fpCommandSectionPlane->SetParameter(paramete 217 fpCommandSectionPlane->SetParameter(parameter); 373 parameter = new G4UIparameter("ny",'d',omi 218 parameter = new G4UIparameter("ny",'d',omitable = true); 374 parameter -> SetDefaultValue (0); 219 parameter -> SetDefaultValue (0); 375 parameter -> SetGuidance ("Component o 220 parameter -> SetGuidance ("Component of plane normal."); 376 fpCommandSectionPlane->SetParameter(paramete 221 fpCommandSectionPlane->SetParameter(parameter); 377 parameter = new G4UIparameter("nz",'d',omi 222 parameter = new G4UIparameter("nz",'d',omitable = true); 378 parameter -> SetDefaultValue (0); 223 parameter -> SetDefaultValue (0); 379 parameter -> SetGuidance ("Component o 224 parameter -> SetGuidance ("Component of plane normal."); 380 fpCommandSectionPlane->SetParameter(paramete 225 fpCommandSectionPlane->SetParameter(parameter); 381 226 382 fpCommandSpecialMeshRendering = new G4UIcmdW << 383 ("/vis/viewer/set/specialMeshRendering",this << 384 fpCommandSpecialMeshRendering -> SetGuidance << 385 ("Request special rendering of volumes (mesh << 386 fpCommandSpecialMeshRendering->SetParameterN << 387 fpCommandSpecialMeshRendering->SetDefaultVal << 388 << 389 fpCommandSpecialMeshRenderingOption = new G4 << 390 ("/vis/viewer/set/specialMeshRenderingOption << 391 fpCommandSpecialMeshRenderingOption->SetGuid << 392 ("Set special mesh rendering option - \"defa << 393 fpCommandSpecialMeshRenderingOption->SetPara << 394 fpCommandSpecialMeshRenderingOption->SetCand << 395 fpCommandSpecialMeshRenderingOption->SetDefa << 396 << 397 fpCommandSpecialMeshVolumes = new G4UIcomman << 398 ("/vis/viewer/set/specialMeshVolumes",this); << 399 fpCommandSpecialMeshVolumes -> SetGuidance << 400 ("Specify the volumes for special rendering. << 401 "\nand is interpreted to mean \"all found m << 402 fpCommandSpecialMeshVolumes->SetGuidance << 403 ("Please provide a list of space-separated p << 404 "\nnumber pairs. Negative copy number means << 405 parameter = new G4UIparameter("volumes",'s', << 406 parameter->SetGuidance << 407 ("List of physical volume names and copy num << 408 fpCommandSpecialMeshVolumes->SetParameter(pa << 409 << 410 fpCommandStyle = new G4UIcmdWithAString ("/v 227 fpCommandStyle = new G4UIcmdWithAString ("/vis/viewer/set/style",this); >> 228 fpCommandStyle->SetGuidance ("/vis/viewer/set/style wireframe|surface"); 411 fpCommandStyle->SetGuidance 229 fpCommandStyle->SetGuidance 412 ("Set style of drawing - w[ireframe] or s[ur << 230 ("Note: parameter will be parsed for first character \"w\" or \"s\"."); 413 fpCommandStyle->SetGuidance << 414 ("(Hidden line drawing is controlled by \"/v << 415 fpCommandStyle->SetParameterName ("style",om 231 fpCommandStyle->SetParameterName ("style",omitable = false); 416 fpCommandStyle->SetCandidates("w wireframe s << 232 // fpCommandStyle->SetCandidates("wireframe surface"); // Own parsing. 417 << 418 fpCommandTargetPoint = new G4UIcmdWith3Vecto << 419 ("/vis/viewer/set/targetPoint", this); << 420 fpCommandTargetPoint->SetGuidance << 421 ("Set target point."); << 422 fpCommandTargetPoint->SetGuidance << 423 ("This sets the \"Current Target Point\" rel << 424 fpCommandTargetPoint->SetGuidance << 425 ("Target Point\" so that the actual target p << 426 fpCommandTargetPoint->SetGuidance << 427 ("(See G4ViewParameters.hh for an explanatio << 428 fpCommandTargetPoint->SetParameterName("x", << 429 fpCommandTargetPoint->SetUnitCategory("Lengt << 430 233 431 fpCommandUpThetaPhi = new G4UIcommand 234 fpCommandUpThetaPhi = new G4UIcommand 432 ("/vis/viewer/set/upThetaPhi", this); << 235 ("/vis/viewer/set/upThetaPhi", this); 433 fpCommandUpThetaPhi -> SetGuidance ("Set up << 434 fpCommandUpThetaPhi -> SetGuidance 236 fpCommandUpThetaPhi -> SetGuidance 435 ("Viewer will attempt always to show this di << 237 ("/vis/viewer/set/upThetaPhi [<theta>] [<phi>] [deg|rad]"); >> 238 fpCommandUpThetaPhi -> SetGuidance >> 239 ("Set up vector. Viewer will attempt always to show" >> 240 " this direction upwards."); 436 parameter = new G4UIparameter("theta", 'd', 241 parameter = new G4UIparameter("theta", 'd', omitable = true); 437 parameter -> SetDefaultValue (90.); << 242 parameter -> SetCurrentAsDefault (true); 438 fpCommandUpThetaPhi -> SetParameter (paramet 243 fpCommandUpThetaPhi -> SetParameter (parameter); 439 parameter = new G4UIparameter("phi", 'd', om 244 parameter = new G4UIparameter("phi", 'd', omitable = true); 440 parameter -> SetDefaultValue (90.); << 245 parameter -> SetCurrentAsDefault (true); 441 fpCommandUpThetaPhi -> SetParameter (paramet 246 fpCommandUpThetaPhi -> SetParameter (parameter); 442 parameter = new G4UIparameter ("unit", 's', 247 parameter = new G4UIparameter ("unit", 's', omitable = true); 443 parameter -> SetDefaultValue ("deg"); 248 parameter -> SetDefaultValue ("deg"); 444 fpCommandUpThetaPhi -> SetParameter (paramet 249 fpCommandUpThetaPhi -> SetParameter (parameter); 445 250 446 fpCommandUpVector = new G4UIcommand 251 fpCommandUpVector = new G4UIcommand 447 ("/vis/viewer/set/upVector", this); << 252 ("/vis/viewer/set/upVector", this); 448 fpCommandUpVector -> SetGuidance ("Set up ve << 253 fpCommandUpVector -> SetGuidance >> 254 ("/vis/viewer/set/upVector [<x>] [<y>] [<z>]"); 449 fpCommandUpVector -> SetGuidance 255 fpCommandUpVector -> SetGuidance 450 ("Viewer will attempt always to show this di << 256 ("Set up vector. Viewer will attempt always to show" >> 257 " this direction upwards."); 451 parameter = new G4UIparameter("x", 'd', omit 258 parameter = new G4UIparameter("x", 'd', omitable = true); 452 parameter -> SetDefaultValue (0.); << 259 parameter -> SetCurrentAsDefault (true); 453 fpCommandUpVector -> SetParameter (parameter 260 fpCommandUpVector -> SetParameter (parameter); 454 parameter = new G4UIparameter("y", 'd', omit 261 parameter = new G4UIparameter("y", 'd', omitable = true); 455 parameter -> SetDefaultValue (1.); << 262 parameter -> SetCurrentAsDefault (true); 456 fpCommandUpVector -> SetParameter (parameter 263 fpCommandUpVector -> SetParameter (parameter); 457 parameter = new G4UIparameter ("z", 'd', omi 264 parameter = new G4UIparameter ("z", 'd', omitable = true); 458 parameter -> SetDefaultValue (0.); << 265 parameter -> SetCurrentAsDefault (true); 459 fpCommandUpVector -> SetParameter (parameter 266 fpCommandUpVector -> SetParameter (parameter); 460 267 461 fpCommandViewpointThetaPhi = new G4UIcommand 268 fpCommandViewpointThetaPhi = new G4UIcommand 462 ("/vis/viewer/set/viewpointThetaPhi", this); << 269 ("/vis/viewer/set/viewpointThetaPhi", this); 463 fpCommandViewpointThetaPhi -> SetGuidance 270 fpCommandViewpointThetaPhi -> SetGuidance 464 ("Set direction from target to camera."); << 271 ("/vis/viewer/set/viewpointThetaPhi [<theta>] [<phi>] [deg|rad]"); 465 fpCommandViewpointThetaPhi -> SetGuidance 272 fpCommandViewpointThetaPhi -> SetGuidance 466 ("Also changes lightpoint direction if light << 273 ("Set direction from target to camera. Also changes lightpoint direction" >> 274 "\nif lights are set to move with camera."); 467 parameter = new G4UIparameter("theta", 'd', 275 parameter = new G4UIparameter("theta", 'd', omitable = true); 468 parameter -> SetDefaultValue (60.); << 276 parameter -> SetCurrentAsDefault (true); 469 fpCommandViewpointThetaPhi -> SetParameter ( 277 fpCommandViewpointThetaPhi -> SetParameter (parameter); 470 parameter = new G4UIparameter("phi", 'd', om 278 parameter = new G4UIparameter("phi", 'd', omitable = true); 471 parameter -> SetDefaultValue (45.); << 279 parameter -> SetCurrentAsDefault (true); 472 fpCommandViewpointThetaPhi -> SetParameter ( 280 fpCommandViewpointThetaPhi -> SetParameter (parameter); 473 parameter = new G4UIparameter ("unit", 's', 281 parameter = new G4UIparameter ("unit", 's', omitable = true); 474 parameter -> SetDefaultValue ("deg"); 282 parameter -> SetDefaultValue ("deg"); 475 fpCommandViewpointThetaPhi -> SetParameter ( 283 fpCommandViewpointThetaPhi -> SetParameter (parameter); 476 284 477 fpCommandViewpointVector = new G4UIcommand 285 fpCommandViewpointVector = new G4UIcommand 478 ("/vis/viewer/set/viewpointVector", this); << 286 ("/vis/viewer/set/viewpointVector", this); 479 fpCommandViewpointVector -> SetGuidance 287 fpCommandViewpointVector -> SetGuidance 480 ("Set direction from target to camera."); << 288 ("/vis/viewer/set/viewpointVector [<x>] [<y>] [<z>]"); 481 fpCommandViewpointVector -> SetGuidance 289 fpCommandViewpointVector -> SetGuidance 482 ("Also changes lightpoint direction if light << 290 ("Set direction from target to camera. Also changes lightpoint direction" >> 291 "\nif lights are set to move with camera."); 483 parameter = new G4UIparameter("x", 'd', omit 292 parameter = new G4UIparameter("x", 'd', omitable = true); 484 parameter -> SetDefaultValue (1.); << 293 parameter -> SetCurrentAsDefault (true); 485 fpCommandViewpointVector -> SetParameter (pa 294 fpCommandViewpointVector -> SetParameter (parameter); 486 parameter = new G4UIparameter("y", 'd', omit 295 parameter = new G4UIparameter("y", 'd', omitable = true); 487 parameter -> SetDefaultValue (1.); << 296 parameter -> SetCurrentAsDefault (true); 488 fpCommandViewpointVector -> SetParameter (pa 297 fpCommandViewpointVector -> SetParameter (parameter); 489 parameter = new G4UIparameter ("z", 'd', omi 298 parameter = new G4UIparameter ("z", 'd', omitable = true); 490 parameter -> SetDefaultValue (1.); << 299 parameter -> SetCurrentAsDefault (true); 491 fpCommandViewpointVector -> SetParameter (pa 300 fpCommandViewpointVector -> SetParameter (parameter); 492 << 493 fpTimeWindowDirectory = new G4UIdirectory (" << 494 fpTimeWindowDirectory -> SetGuidance ("Set t << 495 G4String timeWindowGuidance = << 496 "For these commands use" << 497 "\n /vis/scene/add/trajectories rich" << 498 "\n /vis/modeling/trajectories/drawByCharge << 499 "\nthen typically" << 500 "\n /vis/viewer/set/timeWindow/displayLight << 501 "\n /vis/viewer/set/timeWindow/displayHeadT << 502 "\n /vis/viewer/set/timeWindow/fadeFactor 1 << 503 "\n /run/beamOn # or several until you get << 504 "\n /vis/viewer/set/timeWindow/startTime 0 << 505 "\n /vis/viewer/save" << 506 "\n /vis/viewer/set/timeWindow/startTime 1 << 507 "\nthen zoom, pan etc to a view of interest << 508 "\n /vis/viewer/save" << 509 "\nthen repeat with next start time, another << 510 "\n /vis/viewer/interpolate"; << 511 << 512 fpCommandTimeWindowDisplayHeadTime = << 513 new G4UIcommand("/vis/viewer/set/timeWindow/ << 514 fpCommandTimeWindowDisplayHeadTime->SetGuida << 515 ("Display head time of range in 2D text."); << 516 fpCommandTimeWindowDisplayHeadTime->SetGuida << 517 parameter = new G4UIparameter ("displayHeadT << 518 parameter->SetDefaultValue(false); << 519 fpCommandTimeWindowDisplayHeadTime->SetParam << 520 parameter = new G4UIparameter ("screenX", 'd << 521 parameter->SetGuidance("-1 < screenX < 1"); << 522 parameter->SetParameterRange("screenX >= -1. << 523 parameter->SetDefaultValue(-0.9); << 524 fpCommandTimeWindowDisplayHeadTime->SetParam << 525 parameter = new G4UIparameter ("screenY", 'd << 526 parameter->SetGuidance("-1 < screenY < 1"); << 527 parameter->SetParameterRange("screenY >= -1. << 528 parameter->SetDefaultValue(-0.9); << 529 fpCommandTimeWindowDisplayHeadTime->SetParam << 530 parameter = new G4UIparameter ("screenSize", << 531 parameter->SetDefaultValue(24.); << 532 fpCommandTimeWindowDisplayHeadTime->SetParam << 533 parameter = new G4UIparameter ("red", 'd', o << 534 parameter->SetParameterRange("red >= 0. && r << 535 parameter->SetDefaultValue(0.); << 536 fpCommandTimeWindowDisplayHeadTime->SetParam << 537 parameter = new G4UIparameter ("green", 'd', << 538 parameter->SetParameterRange("green >= 0. && << 539 parameter->SetDefaultValue(1.); << 540 fpCommandTimeWindowDisplayHeadTime->SetParam << 541 parameter = new G4UIparameter ("blue", 'd', << 542 parameter->SetParameterRange("blue >= 0. && << 543 parameter->SetDefaultValue(1.); << 544 fpCommandTimeWindowDisplayHeadTime->SetParam << 545 << 546 fpCommandTimeWindowDisplayLightFront = << 547 new G4UIcommand("/vis/viewer/set/timeWindow/ << 548 fpCommandTimeWindowDisplayLightFront->SetGui << 549 ("Display the light front at head time."); << 550 fpCommandTimeWindowDisplayLightFront->SetGui << 551 ("Tip: The trajectories can appear of jump a << 552 "\nbecause their time range overlaps the vi << 553 "\naverage out this discrete time effect, a << 554 "\nhalf the trajectories interval. E.g., if << 555 "\ninterval is 0.01 ns:" << 556 "\n /vis/viewer/set/timeWindow/displayLigh << 557 "\nTo prevent them beating the light front << 558 "\n /vis/viewer/set/timeWindow/displayLigh << 559 fpCommandTimeWindowDisplayLightFront->SetGui << 560 parameter = new G4UIparameter ("displayLight << 561 parameter->SetDefaultValue(true); << 562 fpCommandTimeWindowDisplayLightFront->SetPar << 563 parameter = new G4UIparameter ("originX", 'd << 564 parameter->SetDefaultValue(0.); << 565 fpCommandTimeWindowDisplayLightFront->SetPar << 566 parameter = new G4UIparameter ("originY", 'd << 567 parameter->SetDefaultValue(0.); << 568 fpCommandTimeWindowDisplayLightFront->SetPar << 569 parameter = new G4UIparameter ("originZ", 'd << 570 parameter->SetDefaultValue(0.); << 571 fpCommandTimeWindowDisplayLightFront->SetPar << 572 parameter = new G4UIparameter ("space_unit", << 573 parameter->SetDefaultValue("m"); << 574 fpCommandTimeWindowDisplayLightFront->SetPar << 575 parameter = new G4UIparameter ("originT", 'd << 576 parameter->SetDefaultValue(0.); << 577 fpCommandTimeWindowDisplayLightFront->SetPar << 578 parameter = new G4UIparameter ("time_unit", << 579 parameter->SetDefaultValue("s"); << 580 fpCommandTimeWindowDisplayLightFront->SetPar << 581 parameter = new G4UIparameter ("red", 'd', o << 582 parameter->SetParameterRange("red >= 0. && r << 583 parameter->SetDefaultValue(0.); << 584 fpCommandTimeWindowDisplayLightFront->SetPar << 585 parameter = new G4UIparameter ("green", 'd', << 586 parameter->SetParameterRange("green >= 0. && << 587 parameter->SetDefaultValue(1.); << 588 fpCommandTimeWindowDisplayLightFront->SetPar << 589 parameter = new G4UIparameter ("blue", 'd', << 590 parameter->SetParameterRange("blue >= 0. && << 591 parameter->SetDefaultValue(0.); << 592 fpCommandTimeWindowDisplayLightFront->SetPar << 593 << 594 fpCommandTimeWindowEndTime = << 595 new G4UIcommand("/vis/viewer/set/timeWindow/ << 596 fpCommandTimeWindowEndTime->SetGuidance("Set << 597 fpCommandTimeWindowEndTime->SetGuidance(time << 598 parameter = new G4UIparameter ("end-time", ' << 599 parameter->SetDefaultValue(G4VisAttributes:: << 600 fpCommandTimeWindowEndTime->SetParameter(par << 601 parameter = new G4UIparameter ("end-time-uni << 602 parameter->SetDefaultValue("ns"); << 603 fpCommandTimeWindowEndTime->SetParameter(par << 604 parameter = new G4UIparameter ("time-range", << 605 parameter->SetDefaultValue(-1.); << 606 fpCommandTimeWindowEndTime->SetParameter(par << 607 parameter = new G4UIparameter ("time-range-u << 608 parameter->SetDefaultValue("ns"); << 609 fpCommandTimeWindowEndTime->SetParameter(par << 610 << 611 fpCommandTimeWindowFadeFactor = << 612 new G4UIcmdWithADouble("/vis/viewer/set/time << 613 fpCommandTimeWindowFadeFactor->SetGuidance << 614 ("0: no fade; 1: maximum fade with time wind << 615 fpCommandTimeWindowFadeFactor->SetGuidance(t << 616 fpCommandTimeWindowFadeFactor->SetParameterN << 617 fpCommandTimeWindowFadeFactor->SetRange("fad << 618 fpCommandTimeWindowFadeFactor->SetDefaultVal << 619 << 620 fpCommandTimeWindowStartTime = << 621 new G4UIcommand("/vis/viewer/set/timeWindow/ << 622 fpCommandTimeWindowStartTime->SetGuidance("S << 623 fpCommandTimeWindowStartTime->SetGuidance(ti << 624 parameter = new G4UIparameter ("start-time", << 625 parameter->SetDefaultValue(-G4VisAttributes: << 626 fpCommandTimeWindowStartTime->SetParameter(p << 627 parameter = new G4UIparameter ("start-time-u << 628 parameter->SetDefaultValue("ns"); << 629 fpCommandTimeWindowStartTime->SetParameter(p << 630 parameter = new G4UIparameter ("time-range", << 631 parameter->SetDefaultValue(-1.); << 632 fpCommandTimeWindowStartTime->SetParameter(p << 633 parameter = new G4UIparameter ("time-range-u << 634 parameter->SetDefaultValue("ns"); << 635 fpCommandTimeWindowStartTime->SetParameter(p << 636 } 301 } 637 302 638 G4VisCommandsViewerSet::~G4VisCommandsViewerSe 303 G4VisCommandsViewerSet::~G4VisCommandsViewerSet() { 639 delete fpCommandTimeWindowStartTime; << 304 delete fpCommandAll; 640 delete fpCommandTimeWindowFadeFactor; << 305 delete fpCommandAutoRefresh; 641 delete fpCommandTimeWindowEndTime; << 306 delete fpCommandCulling; 642 delete fpCommandTimeWindowDisplayLightFront; << 307 delete fpCommandEdge; 643 delete fpCommandTimeWindowDisplayHeadTime; << 308 delete fpCommandGlobalMarkerScale; 644 delete fpTimeWindowDirectory; << 309 delete fpCommandHiddenEdge; 645 delete fpCommandViewpointVector; << 310 delete fpCommandHiddenMarker; 646 delete fpCommandViewpointThetaPhi; << 647 delete fpCommandUpVector; << 648 delete fpCommandUpThetaPhi; << 649 delete fpCommandTargetPoint; << 650 delete fpCommandStyle; << 651 delete fpCommandSpecialMeshVolumes; << 652 delete fpCommandSpecialMeshRenderingOption; << 653 delete fpCommandSpecialMeshRendering; << 654 delete fpCommandSectionPlane; << 655 delete fpCommandRotationStyle; << 656 delete fpCommandProjection; << 657 delete fpCommandPicking; << 658 delete fpCommandNumberOfCloudPoints; << 659 delete fpCommandLineWidth; << 660 delete fpCommandLineSegments; 311 delete fpCommandLineSegments; 661 delete fpCommandLightsVector; << 662 delete fpCommandLightsThetaPhi; << 663 delete fpCommandLightsMove; 312 delete fpCommandLightsMove; 664 delete fpCommandHiddenMarker; << 313 delete fpCommandLightsThetaPhi; 665 delete fpCommandHiddenEdge; << 314 delete fpCommandLightsVector; 666 delete fpCommandGlobalMarkerScale; << 315 delete fpCommandProjection; 667 delete fpCommandGlobalLineWidthScale; << 316 delete fpCommandSectionPlane; 668 delete fpCommandExplodeFactor; << 317 delete fpCommandStyle; 669 delete fpCommandEdge; << 318 delete fpCommandUpThetaPhi; 670 delete fpCommandDefaultTextColour; << 319 delete fpCommandUpVector; 671 delete fpCommandDefaultColour; << 320 delete fpCommandViewpointThetaPhi; 672 delete fpCommandCutawayMode; << 321 delete fpCommandViewpointVector; 673 delete fpCommandCulling; << 674 delete fpCommandBackground; << 675 delete fpCommandAuxEdge; << 676 delete fpCommandAutoRefresh; << 677 delete fpCommandAll; << 678 } 322 } 679 323 680 G4String G4VisCommandsViewerSet::GetCurrentVal << 324 G4String G4VisCommandsViewerSet::GetCurrentValue(G4UIcommand* command) { 681 return ""; << 325 G4String currentValue; >> 326 if (command == fpCommandLightsThetaPhi) { >> 327 currentValue = ConvertToString(fLightsVector.theta(), >> 328 fLightsVector.phi(), "deg"); >> 329 } >> 330 else if (command == fpCommandLightsVector) { >> 331 currentValue = ConvertToString(fLightsVector); >> 332 } >> 333 else if (command == fpCommandViewpointThetaPhi) { >> 334 currentValue = ConvertToString(fViewpointVector.theta(), >> 335 fViewpointVector.phi(), "deg"); >> 336 } >> 337 else if (command == fpCommandViewpointVector) { >> 338 currentValue = ConvertToString(fViewpointVector); >> 339 } >> 340 else { >> 341 currentValue = "invalid"; >> 342 } >> 343 return currentValue; 682 } 344 } 683 345 684 void G4VisCommandsViewerSet::SetNewValue 346 void G4VisCommandsViewerSet::SetNewValue 685 (G4UIcommand* command,G4String newValue) { 347 (G4UIcommand* command,G4String newValue) { 686 348 687 G4VisManager::Verbosity verbosity = fpVisMan 349 G4VisManager::Verbosity verbosity = fpVisManager->GetVerbosity(); 688 350 689 G4VViewer* currentViewer = fpVisManager->Get 351 G4VViewer* currentViewer = fpVisManager->GetCurrentViewer(); 690 if (!currentViewer) { 352 if (!currentViewer) { 691 if (verbosity >= G4VisManager::errors) { 353 if (verbosity >= G4VisManager::errors) { 692 G4warn << << 354 G4cout << 693 "ERROR: G4VisCommandsViewerSet::SetNewVa << 355 "ERROR: G4VisCommandsViewerSet::SetNewValue: no current viewer." 694 << G4endl; << 356 << G4endl; 695 } 357 } 696 return; 358 return; 697 } 359 } 698 360 699 G4ViewParameters vp = currentViewer->GetView 361 G4ViewParameters vp = currentViewer->GetViewParameters(); 700 362 701 if (command == fpCommandAll) { 363 if (command == fpCommandAll) { 702 G4VViewer* fromViewer = fpVisManager->GetV 364 G4VViewer* fromViewer = fpVisManager->GetViewer(newValue); 703 if (!fromViewer) { 365 if (!fromViewer) { 704 if (verbosity >= G4VisManager::errors) { 366 if (verbosity >= G4VisManager::errors) { 705 G4warn << << 367 G4cout << 706 "ERROR: G4VisCommandsViewerSet::SetNew << 368 "ERROR: G4VisCommandsViewerSet::SetNewValue: all:" 707 "\n unrecognised from-viewer." << 369 "\n unrecognised from-viewer." 708 << G4endl; << 370 << G4endl; 709 } 371 } 710 return; 372 return; 711 } 373 } 712 if (fromViewer == currentViewer) { 374 if (fromViewer == currentViewer) { 713 if (verbosity >= G4VisManager::warnings) 375 if (verbosity >= G4VisManager::warnings) { 714 G4warn << << 376 G4cout << 715 "WARNING: G4VisCommandsViewerSet::SetN << 377 "WARNING: G4VisCommandsViewerSet::SetNewValue: all:" 716 "\n from-viewer and current viewer ar << 378 "\n from-viewer and current viewer are identical." 717 << G4endl; << 379 << G4endl; 718 } 380 } 719 return; 381 return; 720 } 382 } 721 // Copy view parameters except for autoRef << 383 // Copy view parameters except for autoRefresh... 722 auto keepAutoRefresh = vp.IsAutoRefresh(); << 384 G4bool currentAutoRefresh = 723 auto keepBackground = vp.GetBackgroundCol << 385 currentViewer->GetViewParameters().IsAutoRefresh(); 724 vp = fromViewer->GetViewParameters(); 386 vp = fromViewer->GetViewParameters(); 725 vp.SetAutoRefresh(keepAutoRefresh); << 387 vp.SetAutoRefresh(currentAutoRefresh); 726 vp.SetBackgroundColour(keepBackground); << 727 // Concatenate any private vis attributes << 728 const std::vector<G4ModelingParameters::Vi << 729 privateVAMs = fromViewer->GetPrivateVisAtt << 730 if (privateVAMs) { << 731 std::vector<G4ModelingParameters::VisAtt << 732 for (i = privateVAMs->begin(); i != priv << 733 vp.AddVisAttributesModifier(*i); << 734 } << 735 } << 736 if (verbosity >= G4VisManager::confirmatio 388 if (verbosity >= G4VisManager::confirmations) { 737 G4cout << "View parameters of viewer \"" 389 G4cout << "View parameters of viewer \"" << currentViewer->GetName() 738 << "\"\n set to those of viewer \"" << << 390 << "\"\n set to those of viewer \"" << fromViewer->GetName() 739 << "\"." << 391 << "\"." 740 << G4endl; << 392 << G4endl; 741 } << 742 if (verbosity >= G4VisManager::warnings) { << 743 G4warn << "You may need \"/vis/viewer/re << 744 << G4endl; << 745 } 393 } 746 } 394 } 747 395 748 else if (command == fpCommandAutoRefresh) { 396 else if (command == fpCommandAutoRefresh) { 749 G4bool autoRefresh = G4UIcommand::ConvertT << 397 G4bool autoRefresh = GetNewBoolValue(newValue); 750 const G4ViewParameters& defaultVP = << 751 currentViewer->GetDefaultViewParameters(); << 752 if (autoRefresh && !defaultVP.IsAutoRefres << 753 if (verbosity >= G4VisManager::warnings) << 754 G4warn << 755 << "WARNING: " << 756 << currentViewer->GetName() << " is NO << 757 << "\n so cannot be set to auto-refre << 758 << G4endl; << 759 } << 760 return; << 761 } << 762 vp.SetAutoRefresh(autoRefresh); 398 vp.SetAutoRefresh(autoRefresh); >> 399 if (verbosity >= G4VisManager::warnings) { >> 400 G4cout << >> 401 "/vis/viewer/set/autoRefresh is a DEPRECATED COMMAND." >> 402 "\n It will be removed from next major release." >> 403 << G4endl; >> 404 } 763 if (verbosity >= G4VisManager::confirmatio 405 if (verbosity >= G4VisManager::confirmations) { 764 G4cout << "Views will "; 406 G4cout << "Views will "; 765 if (!vp.IsAutoRefresh()) G4cout << "not 407 if (!vp.IsAutoRefresh()) G4cout << "not "; 766 G4cout << "be automatically refreshed af 408 G4cout << "be automatically refreshed after a change of view parameters." 767 << G4endl; << 409 << G4endl; 768 } << 769 if (!vp.IsAutoRefresh()) { << 770 currentViewer->SetViewParameters(vp); << 771 return; // Avoid a refresh if auto-refr << 772 } // ...otherwise take normal action. << 773 } << 774 << 775 else if (command == fpCommandAuxEdge) { << 776 vp.SetAuxEdgeVisible(G4UIcommand::ConvertT << 777 if (verbosity >= G4VisManager::confirmatio << 778 G4cout << "Auxiliary edges will "; << 779 if (!vp.IsAuxEdgeVisible()) G4cout << "n << 780 G4cout << "be visible." << G4endl; << 781 } << 782 } << 783 << 784 else if (command == fpCommandBackground) { << 785 G4String redOrString; << 786 G4double green, blue, opacity; << 787 std::istringstream iss(newValue); << 788 iss >> redOrString >> green >> blue >> opa << 789 G4Colour colour(0.,0.,0.); // Default bla << 790 ConvertToColour(colour, redOrString, green << 791 vp.SetBackgroundColour(colour); << 792 if (verbosity >= G4VisManager::confirmatio << 793 G4cout << "Background colour " << 794 << vp.GetBackgroundColour() << 795 << " requested." << 796 << G4endl; << 797 } 410 } 798 } 411 } 799 412 800 else if (command == fpCommandCulling) { 413 else if (command == fpCommandCulling) { 801 G4String cullingOption, stringFlag, unit; 414 G4String cullingOption, stringFlag, unit; 802 G4double density; 415 G4double density; 803 std::istringstream is (newValue); << 416 G4bool boolFlag; >> 417 std::istrstream is ((char*)newValue.data()); 804 is >> cullingOption >> stringFlag >> densi 418 is >> cullingOption >> stringFlag >> density >> unit; 805 G4bool boolFlag = G4UIcommand::ConvertToBo << 419 boolFlag = GetNewBoolValue(stringFlag); 806 if (cullingOption == "global") { 420 if (cullingOption == "global") { 807 vp.SetCulling(boolFlag); 421 vp.SetCulling(boolFlag); 808 if (verbosity >= G4VisManager::confirmat 422 if (verbosity >= G4VisManager::confirmations) { 809 G4cout << << 423 G4cout << 810 "G4VisCommandsViewerSet::SetNewValue: << 424 "G4VisCommandsViewerSet::SetNewValue: culling: global culling flag" 811 " set to " << G4UIcommand::ConvertToSt << 425 " set to " << ConvertToString(boolFlag) << 812 ".\n Does not change specific culling << 426 ".\n Does not change specific culling flags." 813 << G4endl; << 427 << G4endl; 814 } 428 } 815 } 429 } 816 else if (cullingOption == "coveredDaughter 430 else if (cullingOption == "coveredDaughters") { 817 vp.SetCullingCovered(boolFlag); 431 vp.SetCullingCovered(boolFlag); 818 if (verbosity >= G4VisManager::confirmat 432 if (verbosity >= G4VisManager::confirmations) { 819 G4cout << << 433 G4cout << 820 "G4VisCommandsViewerSet::SetNewValue: << 434 "G4VisCommandsViewerSet::SetNewValue: culling: culling covered" 821 "\n daughters flag set to " << 435 "\n daughters flag set to " 822 << G4UIcommand::ConvertToString(boolFl << 436 << ConvertToString(boolFlag) << 823 ". Daughters covered by opaque mother << 437 ". Daughters covered by opaque mothers" 824 "\n will be culled, i.e., not drawn, << 438 "\n will be culled, i.e., not drawn, if this flag is true." 825 "\n Note: this is only effective in s << 439 "\n Note: this is only effective in surface drawing style," 826 "\n and then only if the volumes are << 440 "\n and then only if the volumes are visible and opaque, and then" 827 "\n only if no sections or cutaways a << 441 "\n only if no sections or cutways are in operation." 828 << G4endl; << 442 << G4endl; 829 } 443 } 830 } 444 } 831 else if (cullingOption == "invisible") { 445 else if (cullingOption == "invisible") { 832 vp.SetCullingInvisible(boolFlag); 446 vp.SetCullingInvisible(boolFlag); 833 if (verbosity >= G4VisManager::confirmat 447 if (verbosity >= G4VisManager::confirmations) { 834 G4cout << << 448 G4cout << 835 "G4VisCommandsViewerSet::SetNewValue: << 449 "G4VisCommandsViewerSet::SetNewValue: culling: culling invisible" 836 "\n flag set to " << 450 "\n flag set to " 837 << boolFlag << G4UIcommand::ConvertToS << 451 << boolFlag << ConvertToString(boolFlag) << 838 ". Volumes marked invisible will be c << 452 ". Volumes marked invisible will be culled," 839 "\n i.e., not drawn, if this flag is << 453 "\n i.e., not drawn, if this flag is true." 840 << G4endl; << 454 << G4endl; 841 } 455 } 842 } 456 } 843 else if (cullingOption == "density") { 457 else if (cullingOption == "density") { 844 const G4String where = << 458 vp.SetDensityCulling(boolFlag); 845 "G4VisCommandsViewerSet::SetNewValue: cu << 846 if (boolFlag) { 459 if (boolFlag) { 847 G4double valueOfUnit; << 460 density *= G4UnitDefinition::GetValueOf(unit); 848 // "Volumic Mass" is Michel's phrase f << 461 vp.SetVisibleDensity(density); 849 if (ProvideValueOfUnit(where,unit,"Vol << 462 } 850 // Successful outcome of unit search << 463 else { 851 vp.SetDensityCulling(boolFlag); << 464 density = vp.GetVisibleDensity(); 852 density *= valueOfUnit; << 853 vp.SetVisibleDensity(density); << 854 } else { << 855 // Unsuccessful outcome of unit sear << 856 density = vp.GetVisibleDensity(); << 857 } << 858 } else { // Reset flag but density unch << 859 vp.SetDensityCulling(boolFlag); << 860 } 465 } 861 if (verbosity >= G4VisManager::confirmat 466 if (verbosity >= G4VisManager::confirmations) { 862 G4cout << 467 G4cout << 863 << where << 468 "G4VisCommandsViewerSet::SetNewValue: culling: culling by density" 864 << "\n flag set to " << 469 "\n flag set to " << ConvertToString(boolFlag) << 865 << std::boolalpha << vp.IsDensityCulli << 470 ". Volumes with density less than " << 866 << ". Volumes with density less than << 471 G4BestUnit(density,"Volumic Mass") << 867 << G4BestUnit(density,"Volumic Mass") << 472 "\n will be culled, i.e., not drawn, if this flag is true." 868 << "\n will be culled, i.e., not draw << 473 << G4endl; 869 << G4endl; << 870 } 474 } 871 } 475 } 872 else { 476 else { 873 if (verbosity >= G4VisManager::errors) { 477 if (verbosity >= G4VisManager::errors) { 874 G4warn << << 478 G4cout << 875 "ERROR: G4VisCommandsViewerSet::SetNew << 479 "ERROR: G4VisCommandsViewerSet::SetNewValue: culling:" 876 "\n option not recognised." << 480 "\n option not recognised." 877 << G4endl; << 481 << G4endl; 878 } 482 } 879 } 483 } 880 } 484 } 881 485 882 else if (command == fpCommandCutawayMode) { << 883 if (newValue == "add" || newValue == "unio << 884 vp.SetCutawayMode(G4ViewParameters::cuta << 885 if (newValue == "multiply" || newValue == << 886 vp.SetCutawayMode(G4ViewParameters::cuta << 887 << 888 if (verbosity >= G4VisManager::confirmatio << 889 G4cout << "Cutaway mode set to "; << 890 if (vp.GetCutawayMode() == G4ViewParamet << 891 G4cout << "cutawayUnion"; << 892 if (vp.GetCutawayMode() == G4ViewParamet << 893 G4cout << "cutawayIntersection"; << 894 G4cout << G4endl; << 895 } << 896 } << 897 << 898 else if (command == fpCommandDefaultColour) << 899 G4String redOrString; << 900 G4double green, blue, opacity; << 901 std::istringstream iss(newValue); << 902 iss >> redOrString >> green >> blue >> opa << 903 G4Colour colour(1.,1.,1.); // Default whi << 904 ConvertToColour(colour, redOrString, green << 905 G4VisAttributes va = vp.GetDefaultVisAttri << 906 va.SetColour(colour); << 907 vp.SetDefaultVisAttributes(va); << 908 if (verbosity >= G4VisManager::confirmatio << 909 G4cout << "Default colour " << 910 << vp.GetDefaultVisAttributes()->GetColo << 911 << " requested." << 912 << G4endl; << 913 } << 914 } << 915 << 916 else if (command == fpCommandDefaultTextColo << 917 G4String redOrString; << 918 G4double green, blue, opacity; << 919 std::istringstream iss(newValue); << 920 iss >> redOrString >> green >> blue >> opa << 921 G4Colour colour(1.,1.,1.); // Default whi << 922 ConvertToColour(colour, redOrString, green << 923 G4VisAttributes va = vp.GetDefaultTextVisA << 924 va.SetColour(colour); << 925 vp.SetDefaultTextVisAttributes(va); << 926 if (verbosity >= G4VisManager::confirmatio << 927 G4cout << "Default colour " << 928 << vp.GetDefaultTextVisAttributes()->Get << 929 << " requested." << 930 << G4endl; << 931 } << 932 } << 933 << 934 else if (command == fpCommandEdge) { 486 else if (command == fpCommandEdge) { 935 G4ViewParameters::DrawingStyle existingSty 487 G4ViewParameters::DrawingStyle existingStyle = vp.GetDrawingStyle(); 936 if (G4UIcommand::ConvertToBool(newValue)) << 488 if (GetNewBoolValue(newValue)) { 937 switch (existingStyle) { 489 switch (existingStyle) { 938 case G4ViewParameters::wireframe: << 490 case G4ViewParameters::wireframe: 939 break; << 491 break; 940 case G4ViewParameters::hlr: << 492 case G4ViewParameters::hlr: 941 break; << 493 break; 942 case G4ViewParameters::hsr: << 494 case G4ViewParameters::hsr: 943 vp.SetDrawingStyle(G4ViewParameters: << 495 vp.SetDrawingStyle(G4ViewParameters::hlhsr); 944 break; << 496 break; 945 case G4ViewParameters::hlhsr: << 497 case G4ViewParameters::hlhsr: 946 break; << 498 break; 947 case G4ViewParameters::cloud: << 948 break; << 949 } 499 } 950 } 500 } 951 else { // false << 501 else { 952 switch (existingStyle) { 502 switch (existingStyle) { 953 case G4ViewParameters::wireframe: << 503 case G4ViewParameters::wireframe: 954 break; << 504 break; 955 case G4ViewParameters::hlr: << 505 case G4ViewParameters::hlr: 956 break; << 506 break; 957 case G4ViewParameters::hsr: << 507 case G4ViewParameters::hsr: 958 break; << 508 break; 959 case G4ViewParameters::hlhsr: << 509 case G4ViewParameters::hlhsr: 960 vp.SetDrawingStyle(G4ViewParameters: << 510 vp.SetDrawingStyle(G4ViewParameters::hsr); 961 break; << 511 break; 962 case G4ViewParameters::cloud: << 963 break; << 964 } 512 } 965 } 513 } 966 if (verbosity >= G4VisManager::confirmatio 514 if (verbosity >= G4VisManager::confirmations) { 967 G4cout << "Drawing style of viewer \"" < 515 G4cout << "Drawing style of viewer \"" << currentViewer->GetName() 968 << "\" set to " << vp.GetDrawingStyle() << 516 << "\" set to " << vp.GetDrawingStyle() 969 << G4endl; << 517 << G4endl; 970 } << 971 } << 972 << 973 else if (command == fpCommandExplodeFactor) << 974 G4double explodeFactor, x, y, z; << 975 G4String unitString; << 976 std::istringstream is (newValue); << 977 is >> explodeFactor >> x >> y >> z >> unit << 978 G4double unit = G4UIcommand::ValueOf(unitS << 979 vp.SetExplodeFactor(explodeFactor); << 980 vp.SetExplodeCentre(G4Point3D(x * unit, y << 981 if (verbosity >= G4VisManager::confirmatio << 982 G4cout << "Explode factor changed to " < << 983 << " from centre " << vp.GetExplodeCentr << 984 << G4endl; << 985 } << 986 } << 987 << 988 else if (command == fpCommandGlobalLineWidth << 989 G4double globalLineWidthScale << 990 = fpCommandGlobalLineWidthScale->GetNewDou << 991 vp.SetGlobalLineWidthScale(globalLineWidth << 992 if (verbosity >= G4VisManager::confirmatio << 993 G4cout << "Global Line Width Scale chang << 994 << vp.GetGlobalLineWidthScale() << G4end << 995 } 518 } 996 } 519 } 997 520 998 else if (command == fpCommandGlobalMarkerSca 521 else if (command == fpCommandGlobalMarkerScale) { 999 G4double globalMarkerScale 522 G4double globalMarkerScale 1000 = fpCommandGlobalMarkerScale->GetNewDoubl << 523 = fpCommandGlobalMarkerScale->GetNewDoubleValue(newValue); 1001 vp.SetGlobalMarkerScale(globalMarkerScale 524 vp.SetGlobalMarkerScale(globalMarkerScale); 1002 if (verbosity >= G4VisManager::confirmati 525 if (verbosity >= G4VisManager::confirmations) { 1003 G4cout << "Global Marker Scale changed 526 G4cout << "Global Marker Scale changed to " 1004 << vp.GetGlobalMarkerScale() << G4endl; << 527 << vp.GetGlobalMarkerScale() << G4endl; 1005 } 528 } 1006 } 529 } 1007 530 1008 else if (command == fpCommandHiddenEdge) { 531 else if (command == fpCommandHiddenEdge) { 1009 G4ViewParameters::DrawingStyle existingSt 532 G4ViewParameters::DrawingStyle existingStyle = vp.GetDrawingStyle(); 1010 if (G4UIcommand::ConvertToBool(newValue)) << 533 if (GetNewBoolValue(newValue)) { 1011 switch (existingStyle) { 534 switch (existingStyle) { 1012 case G4ViewParameters::wireframe: << 535 case G4ViewParameters::wireframe: 1013 vp.SetDrawingStyle(G4ViewParameters << 536 vp.SetDrawingStyle(G4ViewParameters::hlr); 1014 break; << 537 break; 1015 case G4ViewParameters::hlr: << 538 case G4ViewParameters::hlr: 1016 break; << 539 break; 1017 case G4ViewParameters::hsr: << 540 case G4ViewParameters::hsr: 1018 vp.SetDrawingStyle(G4ViewParameters << 541 vp.SetDrawingStyle(G4ViewParameters::hlhsr); 1019 break; << 542 break; 1020 case G4ViewParameters::hlhsr: << 543 case G4ViewParameters::hlhsr: 1021 break; << 544 break; 1022 case G4ViewParameters::cloud: << 1023 break; << 1024 } 545 } 1025 } 546 } 1026 else { 547 else { 1027 switch (existingStyle) { 548 switch (existingStyle) { 1028 case G4ViewParameters::wireframe: << 549 case G4ViewParameters::wireframe: 1029 break; << 550 break; 1030 case G4ViewParameters::hlr: << 551 case G4ViewParameters::hlr: 1031 vp.SetDrawingStyle(G4ViewParameters << 552 vp.SetDrawingStyle(G4ViewParameters::wireframe); 1032 break; << 553 break; 1033 case G4ViewParameters::hsr: << 554 case G4ViewParameters::hsr: 1034 break; << 555 break; 1035 case G4ViewParameters::hlhsr: << 556 case G4ViewParameters::hlhsr: 1036 vp.SetDrawingStyle(G4ViewParameters << 557 vp.SetDrawingStyle(G4ViewParameters::hsr); 1037 break; << 558 break; 1038 case G4ViewParameters::cloud: << 1039 break; << 1040 } 559 } 1041 } 560 } 1042 if (verbosity >= G4VisManager::confirmati 561 if (verbosity >= G4VisManager::confirmations) { 1043 G4cout << "Drawing style of viewer \"" 562 G4cout << "Drawing style of viewer \"" << currentViewer->GetName() 1044 << "\" set to " << vp.GetDrawingStyle() << 563 << "\" set to " << vp.GetDrawingStyle() 1045 << G4endl; << 564 << G4endl; 1046 } 565 } 1047 } 566 } 1048 567 1049 else if (command == fpCommandHiddenMarker) 568 else if (command == fpCommandHiddenMarker) { 1050 G4bool hidden = G4UIcommand::ConvertToBoo << 569 G4bool hidden = GetNewBoolValue(newValue); 1051 if (hidden) vp.SetMarkerHidden(); 570 if (hidden) vp.SetMarkerHidden(); 1052 else vp.SetMarkerNotHidden(); 571 else vp.SetMarkerNotHidden(); 1053 if (verbosity >= G4VisManager::confirmati 572 if (verbosity >= G4VisManager::confirmations) { 1054 G4cout << "Markers will "; 573 G4cout << "Markers will "; 1055 if (vp.IsMarkerNotHidden()) G4cout << " 574 if (vp.IsMarkerNotHidden()) G4cout << "not "; 1056 G4cout << "be hidden under solid object 575 G4cout << "be hidden under solid objects." << G4endl; 1057 } 576 } 1058 } 577 } 1059 578 1060 else if (command == fpCommandLightsMove) { 579 else if (command == fpCommandLightsMove) { 1061 if (newValue.find("cam") != G4String::npo << 580 G4String s (newValue); 1062 vp.SetLightsMoveWithCamera(true); << 581 if (s.find("cam") != G4String::npos) vp.SetLightsMoveWithCamera(true); 1063 else if(newValue.find("obj") != G4String: << 582 else if(s.find("obj") != G4String::npos) vp.SetLightsMoveWithCamera(false); 1064 vp.SetLightsMoveWithCamera(false); << 1065 else { 583 else { 1066 if (verbosity >= G4VisManager::errors) 584 if (verbosity >= G4VisManager::errors) { 1067 G4warn << "ERROR: \"" << newValue << << 585 G4cout << "ERROR: \"" << newValue << "\" not recognised." 1068 " Looking for \"cam\" or \"obj\" in << 586 " Looking for \"cam\" or \"obj\" in string." << G4endl; 1069 } 587 } 1070 } 588 } 1071 if (verbosity >= G4VisManager::confirmati 589 if (verbosity >= G4VisManager::confirmations) { 1072 G4cout << "Lights move with "; 590 G4cout << "Lights move with "; 1073 if (vp.GetLightsMoveWithCamera()) 591 if (vp.GetLightsMoveWithCamera()) 1074 G4cout << "camera (object appears to << 592 G4cout << "camera (object appears to rotate)."; 1075 else G4cout << "object (the viewer appe 593 else G4cout << "object (the viewer appears to be moving)."; 1076 G4cout << G4endl; 594 G4cout << G4endl; 1077 } 595 } 1078 } 596 } 1079 597 1080 else if (command == fpCommandLightsThetaPhi 598 else if (command == fpCommandLightsThetaPhi) { 1081 G4double theta, phi; 599 G4double theta, phi; 1082 if (ConvertToDoublePair(newValue, theta, << 600 GetNewDoublePairValue(newValue, theta, phi); 1083 G4double x = std::sin (theta) * std::co << 601 G4double x = sin (theta) * cos (phi); 1084 G4double y = std::sin (theta) * std::si << 602 G4double y = sin (theta) * sin (phi); 1085 G4double z = std::cos (theta); << 603 G4double z = cos (theta); 1086 fLightsVector = G4ThreeVector (x, y, z) << 604 fLightsVector = G4ThreeVector (x, y, z); 1087 vp.SetLightpointDirection(fLightsVector << 605 vp.SetLightpointDirection(fLightsVector); 1088 if (verbosity >= G4VisManager::confirma << 606 if (verbosity >= G4VisManager::confirmations) { 1089 G4cout << "Lights direction set to " << 607 G4cout << "Lights direction set to " 1090 << vp.GetLightpointDirection() << G4e << 608 << vp.GetLightpointDirection() << G4endl; 1091 } << 1092 } 609 } 1093 } 610 } 1094 611 1095 else if (command == fpCommandLightsVector) 612 else if (command == fpCommandLightsVector) { 1096 fLightsVector = G4UIcommand::ConvertTo3Ve << 613 fLightsVector = GetNew3VectorValue(newValue); 1097 vp.SetLightpointDirection(fLightsVector); 614 vp.SetLightpointDirection(fLightsVector); 1098 if (verbosity >= G4VisManager::confirmati 615 if (verbosity >= G4VisManager::confirmations) { 1099 G4cout << "Lights direction set to " 616 G4cout << "Lights direction set to " 1100 << vp.GetLightpointDirection() << G4end << 617 << vp.GetLightpointDirection() << G4endl; 1101 } << 1102 } << 1103 << 1104 else if (command == fpCommandLineWidth) { << 1105 if (verbosity >= G4VisManager::errors) { << 1106 // A do-nothing command << 1107 G4warn << command->GetGuidanceLine(0) < << 1108 } 618 } 1109 } 619 } 1110 620 1111 else if (command == fpCommandLineSegments) 621 else if (command == fpCommandLineSegments) { 1112 G4int nSides = G4UIcommand::ConvertToInt( << 622 G4int nSides = GetNewIntValue(newValue); 1113 nSides = vp.SetNoOfSides(nSides); << 623 vp.SetNoOfSides(nSides); 1114 if (verbosity >= G4VisManager::confirmati 624 if (verbosity >= G4VisManager::confirmations) { 1115 G4cout << 625 G4cout << 1116 "Number of line segments per circle in << 626 "Number of line segements per circle in polygon approximation is " 1117 << nSides << G4endl; << 627 << nSides << G4endl; 1118 } << 1119 } << 1120 << 1121 else if (command == fpCommandNumberOfCloudP << 1122 G4int nPoints = G4UIcommand::ConvertToInt << 1123 nPoints = vp.SetNumberOfCloudPoints(nPoin << 1124 if (verbosity >= G4VisManager::confirmati << 1125 G4cout << << 1126 "Number of points to be used in cloud r << 1127 << nPoints << G4endl; << 1128 } << 1129 } << 1130 << 1131 else if (command == fpCommandPicking) { << 1132 vp.SetPicking(G4UIcommand::ConvertToBool( << 1133 if (verbosity >= G4VisManager::confirmati << 1134 G4cout << "Picking "; << 1135 if (vp.IsPicking()) G4cout << "requeste << 1136 else G4cout << "inhibited."; << 1137 G4cout << G4endl; << 1138 } << 1139 if (verbosity >= G4VisManager::warnings) << 1140 G4warn << "You may need to issue \"/vis << 1141 << G4endl; << 1142 } 628 } 1143 } 629 } 1144 630 1145 else if (command == fpCommandProjection) { 631 else if (command == fpCommandProjection) { 1146 G4double fieldHalfAngle; 632 G4double fieldHalfAngle; 1147 const size_t iPos0 = 0; << 633 size_t iPos = 0; 1148 if (newValue[iPos0] == 'o') { // "orthog << 634 if (newValue[iPos] == 'o') { // "orthogonal" 1149 fieldHalfAngle = 0.; 635 fieldHalfAngle = 0.; 1150 } 636 } 1151 else if (newValue[iPos0] == 'p') { // "p << 637 else if (newValue[iPos] == 'p') { // "perspective" 1152 G4String dummy; 638 G4String dummy; 1153 G4String unit; 639 G4String unit; 1154 std::istringstream is (newValue); << 640 std::istrstream is ((char*)newValue.data()); 1155 is >> dummy >> fieldHalfAngle >> unit; 641 is >> dummy >> fieldHalfAngle >> unit; 1156 fieldHalfAngle *= G4UIcommand::ValueOf( << 642 fieldHalfAngle *= ValueOf(unit); 1157 if (fieldHalfAngle > 89.5 * deg || fiel 643 if (fieldHalfAngle > 89.5 * deg || fieldHalfAngle <= 0.0) { 1158 if (verbosity >= G4VisManager::errors << 644 if (verbosity >= G4VisManager::errors) { 1159 G4warn << << 645 G4cout << 1160 "ERROR: Field half angle should be << 646 "ERROR: Field half angle should be 0 < angle <= 89.5 degrees."; 1161 G4warn << G4endl; << 647 G4cout << G4endl; 1162 } << 648 } 1163 return; << 649 return; 1164 } 650 } 1165 } 651 } 1166 else { 652 else { 1167 if (verbosity >= G4VisManager::errors) 653 if (verbosity >= G4VisManager::errors) { 1168 G4warn << "ERROR: \"" << newValue << << 654 G4cout << "ERROR: \"" << newValue << "\" not recognised." 1169 " Looking for 'o' or 'p' first chara << 655 " Looking for 'o' or 'p' first character." << G4endl; 1170 } 656 } 1171 return; 657 return; 1172 } 658 } 1173 vp.SetFieldHalfAngle(fieldHalfAngle); 659 vp.SetFieldHalfAngle(fieldHalfAngle); 1174 if (verbosity >= G4VisManager::confirmati 660 if (verbosity >= G4VisManager::confirmations) { 1175 G4cout << "Projection style of viewer \ 661 G4cout << "Projection style of viewer \"" << currentViewer->GetName() 1176 << "\" set to "; << 662 << "\" set to "; 1177 if (fieldHalfAngle == 0.) { 663 if (fieldHalfAngle == 0.) { 1178 G4cout << "orthogonal."; << 664 G4cout << "orthogonal."; 1179 } 665 } 1180 else { 666 else { 1181 G4cout << "perspective\n with half a << 667 G4cout << "perspective\n with half angle " << fieldHalfAngle / deg 1182 << " degrees."; << 668 << " degrees."; 1183 } 669 } 1184 G4cout << G4endl; 670 G4cout << G4endl; 1185 } 671 } 1186 } 672 } 1187 673 1188 else if (command == fpCommandRotationStyle) << 1189 G4ViewParameters::RotationStyle style; << 1190 if (newValue == "constrainUpDirection") << 1191 style = G4ViewParameters::constrainUpDi << 1192 else if (newValue == "freeRotation") << 1193 style = G4ViewParameters::freeRotation; << 1194 else { << 1195 if (verbosity >= G4VisManager::errors) << 1196 G4warn << "ERROR: \"" << newValue << "\" no << 1197 } << 1198 return; << 1199 } << 1200 vp.SetRotationStyle(style); << 1201 if (verbosity >= G4VisManager::confirmati << 1202 G4cout << "Rotation style of viewer \"" << 1203 << "\" set to " << vp.GetRotationStyle( << 1204 << G4endl; << 1205 } << 1206 } << 1207 << 1208 else if (command == fpCommandSectionPlane) 674 else if (command == fpCommandSectionPlane) { 1209 G4String choice, unit; 675 G4String choice, unit; 1210 G4double x, y, z, nx, ny, nz, F = 1.; << 676 G4double x, y, z, nx, ny, nz; 1211 std::istringstream is (newValue); << 677 const char* t = newValue; >> 678 std::istrstream is ((char*)t); 1212 is >> choice >> x >> y >> z >> unit >> nx 679 is >> choice >> x >> y >> z >> unit >> nx >> ny >> nz; >> 680 1213 G4int iSelector = -1; 681 G4int iSelector = -1; 1214 if (G4StrUtil::icompare(choice, "off") == << 682 if (choice.compareTo("off",G4String::ignoreCase) == 0) iSelector = 0; 1215 !G4UIcommand::ConvertToBool(choice)) << 683 if (choice.compareTo("on",G4String::ignoreCase) == 0) iSelector = 1; 1216 if (G4StrUtil::icompare(choice, "on") == << 1217 G4UIcommand::ConvertToBool(choice)) i << 1218 if (iSelector < 0) { 684 if (iSelector < 0) { 1219 if (verbosity >= G4VisManager::errors) 685 if (verbosity >= G4VisManager::errors) { 1220 G4warn << "Choice not recognised (on/ << 686 G4cout << "Choice not recognised (on/off)." << G4endl; >> 687 G4cout << "Section drawing is currently: "; >> 688 if (vp.IsSection ()) G4cout << "on"; >> 689 else G4cout << "off"; >> 690 G4cout << ".\nSection plane is currently: " >> 691 << vp.GetSectionPlane (); >> 692 G4cout << G4endl; 1221 } 693 } 1222 goto write_result; << 694 return; 1223 } 695 } 1224 // iSelector can only be 0 or 1 << 696 >> 697 G4double F; 1225 switch (iSelector) { 698 switch (iSelector) { 1226 case 0: << 699 case 0: 1227 vp.UnsetSectionPlane(); << 700 vp.UnsetSectionPlane(); 1228 break; << 701 break; 1229 case 1: << 702 case 1: 1230 F = G4UIcommand::ValueOf(unit); << 703 F = ValueOf(unit); 1231 x *= F; y *= F; z *= F; << 704 x *= F; y *= F; z *= F; 1232 if (nx == 0. && ny == 0. && nz == 0.) << 705 vp.SetSectionPlane(G4Plane3D(G4Normal3D(nx,ny,nz), 1233 if (verbosity >= G4VisManager::erro << 706 G4Point3D(x,y,z))); 1234 G4warn << "Null normal." << G4end << 707 vp.SetViewpointDirection(G4Normal3D(nx,ny,nz)); 1235 } << 708 break; 1236 break;; << 709 default: 1237 } << 710 if (verbosity >= G4VisManager::errors) { 1238 // Make sure normal is normalised << 711 G4cout << "ERROR: Choice not recognised (on/off)." 1239 const G4Normal3D& normal = G4Normal3D << 712 << G4endl; 1240 vp.SetSectionPlane(G4Plane3D(normal, << 713 } 1241 vp.SetViewpointDirection(normal); << 714 break; 1242 break; << 1243 } 715 } 1244 write_result: << 716 1245 if (verbosity >= G4VisManager::confirmati 717 if (verbosity >= G4VisManager::confirmations) { 1246 G4cout << "Section drawing is: "; << 718 G4cout << "Section drawing is now: "; 1247 if (vp.IsSection ()) G4cout << "on"; 719 if (vp.IsSection ()) G4cout << "on"; 1248 else G4cout << "off"; << 720 else G4cout << "off"; 1249 G4cout << ".\nSection plane is now: " 721 G4cout << ".\nSection plane is now: " 1250 << vp.GetSectionPlane (); << 722 << vp.GetSectionPlane (); 1251 G4cout << G4endl; << 1252 } << 1253 } << 1254 << 1255 else if (command == fpCommandSpecialMeshRen << 1256 vp.SetSpecialMeshRendering(G4UIcommand::C << 1257 if (verbosity >= G4VisManager::confirmati << 1258 G4cout << "Special mesh rendering"; << 1259 if (vp.IsSpecialMeshRendering()) { << 1260 G4cout << " requested. Current option << 1261 << vp.GetSpecialMeshRenderingOption() << 1262 if (vp.GetSpecialMeshVolumes().empty( << 1263 G4cout << "any mesh."; << 1264 } else{ << 1265 G4cout << "selected volumes:"; << 1266 for (const auto& pvNameCopyNo: vp.G << 1267 G4cout << "\n " << pvNameCopyNo. << 1268 if (pvNameCopyNo.GetCopyNo() >= 0 << 1269 } << 1270 } << 1271 } << 1272 else G4cout << ": off."; << 1273 G4cout << G4endl; 723 G4cout << G4endl; 1274 } 724 } 1275 } 725 } 1276 726 1277 else if (command == fpCommandSpecialMeshRen << 1278 G4ViewParameters::SMROption option = G4Vi << 1279 if (newValue == "dots") { << 1280 option = G4ViewParameters::meshAsDots; << 1281 } << 1282 else if(newValue == "surfaces") { << 1283 option = G4ViewParameters::meshAsSurfac << 1284 } << 1285 vp.SetSpecialMeshRenderingOption(option); << 1286 if (verbosity >= G4VisManager::confirmati << 1287 G4cout << "Special mesh rendering optio << 1288 << vp.GetSpecialMeshRenderingOption() < << 1289 << G4endl; << 1290 } << 1291 } << 1292 << 1293 else if (command == fpCommandSpecialMeshVol << 1294 std::vector<G4ModelingParameters::PVNameC << 1295 if (newValue.empty()) { << 1296 vp.SetSpecialMeshVolumes(requestedMeshe << 1297 } else { << 1298 // Algorithm from Josuttis p.476. << 1299 G4String::size_type iBegin, iEnd; << 1300 iBegin = newValue.find_first_not_of(' ' << 1301 while (iBegin != G4String::npos) { << 1302 iEnd = newValue.find_first_of(' ',iBegin); << 1303 if (iEnd == G4String::npos) { << 1304 iEnd = newValue.length(); << 1305 } << 1306 const G4String& name(newValue.substr(iBegin << 1307 iBegin = newValue.find_first_not_of(' ',iEn << 1308 if (iBegin == G4String::npos) { << 1309 if (verbosity >= G4VisManager::warnings) << 1310 G4warn << << 1311 "WARNING: G4VisCommandsViewerSet::SetNe << 1312 "\n A pair not found. (There should b << 1313 "\n Command ignored." << 1314 << G4endl; << 1315 return; << 1316 } << 1317 } << 1318 iEnd = newValue.find_first_of(' ',iBegin); << 1319 if (iEnd == G4String::npos) { << 1320 iEnd = newValue.length(); << 1321 } << 1322 G4int copyNo; << 1323 std::istringstream iss(newValue.substr(iBeg << 1324 if (!(iss >> copyNo)) { << 1325 if (verbosity >= G4VisManager::warnings) << 1326 G4warn << << 1327 "WARNING: G4VisCommandsViewerSet::SetNe << 1328 "\n Error reading copy number - it was << 1329 "\n Command ignored." << 1330 << G4endl; << 1331 return; << 1332 } << 1333 } << 1334 requestedMeshes.push_back(G4ModelingParamet << 1335 iBegin = newValue.find_first_not_of(' ',iEn << 1336 } << 1337 vp.SetSpecialMeshVolumes(requestedMeshe << 1338 } << 1339 if (verbosity >= G4VisManager::confirmati << 1340 if (vp.GetSpecialMeshVolumes().empty()) << 1341 G4cout << << 1342 "Special mesh list empty, which means \"all << 1343 << G4endl; << 1344 } else { << 1345 G4cout << "Selected special mesh volumes ar << 1346 for (const auto& pvNameCopyNo: vp.GetSpecia << 1347 G4cout << "\n " << pvNameCopyNo.GetName( << 1348 if (pvNameCopyNo.GetCopyNo() >= 0) G4cout << 1349 } << 1350 G4cout << G4endl; << 1351 } << 1352 } << 1353 } << 1354 << 1355 else if (command == fpCommandStyle) { 727 else if (command == fpCommandStyle) { 1356 G4ViewParameters::DrawingStyle existingSt 728 G4ViewParameters::DrawingStyle existingStyle = vp.GetDrawingStyle(); 1357 const size_t iPos0 = 0; << 729 size_t iPos = 0; 1358 if (newValue[iPos0] == 'w') { // "wirefr << 730 if (newValue[iPos] == 'w') { // "wireframe" 1359 switch (existingStyle) { 731 switch (existingStyle) { 1360 case G4ViewParameters::wireframe: << 732 case G4ViewParameters::wireframe: 1361 break; << 733 break; 1362 case G4ViewParameters::hlr: << 734 case G4ViewParameters::hlr: 1363 break; << 735 break; 1364 case G4ViewParameters::hsr: << 736 case G4ViewParameters::hsr: 1365 vp.SetDrawingStyle(G4ViewParameters << 737 vp.SetDrawingStyle(G4ViewParameters::wireframe); 1366 break; << 738 break; 1367 case G4ViewParameters::hlhsr: << 739 case G4ViewParameters::hlhsr: 1368 vp.SetDrawingStyle(G4ViewParameters << 740 vp.SetDrawingStyle(G4ViewParameters::hlr); 1369 break; << 741 break; 1370 case G4ViewParameters::cloud: << 1371 vp.SetDrawingStyle(G4ViewParameters << 1372 break; << 1373 } 742 } 1374 } 743 } 1375 else if (newValue[iPos0] == 's') { // "s << 744 else if (newValue[iPos] == 's') { // "surface" 1376 switch (existingStyle) { << 1377 case G4ViewParameters::wireframe: << 1378 vp.SetDrawingStyle(G4ViewParameters << 1379 break; << 1380 case G4ViewParameters::hlr: << 1381 vp.SetDrawingStyle(G4ViewParameters << 1382 break; << 1383 case G4ViewParameters::hsr: << 1384 break; << 1385 case G4ViewParameters::hlhsr: << 1386 break; << 1387 case G4ViewParameters::cloud: << 1388 vp.SetDrawingStyle(G4ViewParameters << 1389 break; << 1390 } << 1391 } << 1392 else if (newValue[iPos0] == 'c') { // "c << 1393 switch (existingStyle) { 745 switch (existingStyle) { 1394 case G4ViewParameters::wireframe: << 746 case G4ViewParameters::wireframe: 1395 vp.SetDrawingStyle(G4ViewParameters << 747 vp.SetDrawingStyle(G4ViewParameters::hsr); 1396 break; << 748 break; 1397 case G4ViewParameters::hlr: << 749 case G4ViewParameters::hlr: 1398 vp.SetDrawingStyle(G4ViewParameters << 750 vp.SetDrawingStyle(G4ViewParameters::hlhsr); 1399 break; << 751 break; 1400 case G4ViewParameters::hsr: << 752 case G4ViewParameters::hsr: 1401 vp.SetDrawingStyle(G4ViewParameters << 753 break; 1402 break; << 754 case G4ViewParameters::hlhsr: 1403 case G4ViewParameters::hlhsr: << 755 break; 1404 vp.SetDrawingStyle(G4ViewParameters << 1405 break; << 1406 case G4ViewParameters::cloud: << 1407 break; << 1408 } 756 } 1409 } 757 } 1410 else { 758 else { 1411 if (verbosity >= G4VisManager::errors) 759 if (verbosity >= G4VisManager::errors) { 1412 G4warn << "ERROR: \"" << newValue << << 760 G4cout << "ERROR: \"" << newValue << "\" not recognised." 1413 " Looking for 'w' or 's' or 'c' firs << 761 " Looking for 'w' or 's' first character." << G4endl; 1414 } 762 } 1415 return; 763 return; 1416 } 764 } 1417 if (verbosity >= G4VisManager::confirmati 765 if (verbosity >= G4VisManager::confirmations) { 1418 G4cout << "Drawing style of viewer \"" 766 G4cout << "Drawing style of viewer \"" << currentViewer->GetName() 1419 << "\" set to " << vp.GetDrawingStyle() << 767 << "\" set to " << vp.GetDrawingStyle() 1420 << G4endl; << 768 << G4endl; 1421 } << 1422 } << 1423 << 1424 else if (command == fpCommandTargetPoint) { << 1425 G4ThreeVector targetPoint = << 1426 fpCommandTargetPoint->GetNew3VectorValue( << 1427 const G4Point3D& standardTargetPoint = << 1428 currentViewer->GetSceneHandler()->GetScen << 1429 vp.SetCurrentTargetPoint(targetPoint - st << 1430 if (verbosity >= G4VisManager::confirmati << 1431 G4cout << "Target point set to " << 1432 << fpCommandTargetPoint->ConvertToStrin << 1433 (targetPoint) << 1434 << "\n\"Current Target Point\" set to << 1435 << fpCommandTargetPoint->ConvertToStrin << 1436 (vp.GetCurrentTargetPoint()) << 1437 << "\n\"Standard Target Point\" is " << 1438 << fpCommandTargetPoint->ConvertToStrin << 1439 (standardTargetPoint) << 1440 << G4endl; << 1441 } 769 } 1442 } 770 } 1443 771 1444 else if (command == fpCommandUpThetaPhi) { 772 else if (command == fpCommandUpThetaPhi) { 1445 G4double theta, phi; 773 G4double theta, phi; 1446 if (ConvertToDoublePair(newValue, theta, << 774 GetNewDoublePairValue(newValue, theta, phi); 1447 G4double x = std::sin (theta) * std::co << 775 G4double x = sin (theta) * cos (phi); 1448 G4double y = std::sin (theta) * std::si << 776 G4double y = sin (theta) * sin (phi); 1449 G4double z = std::cos (theta); << 777 G4double z = cos (theta); 1450 fUpVector = G4ThreeVector (x, y, z); << 778 fUpVector = G4ThreeVector (x, y, z); 1451 vp.SetUpVector(fUpVector); << 779 vp.SetUpVector(fUpVector); 1452 if (verbosity >= G4VisManager::confirma << 780 if (verbosity >= G4VisManager::confirmations) { 1453 G4cout << "Up direction set to " << v << 781 G4cout << "Up direction set to " << vp.GetUpVector() << G4endl; 1454 } << 1455 } 782 } 1456 } 783 } 1457 784 1458 else if (command == fpCommandUpVector) { 785 else if (command == fpCommandUpVector) { 1459 fUpVector = G4UIcommand::ConvertTo3Vector << 786 fUpVector = GetNew3VectorValue(newValue); 1460 vp.SetUpVector(fUpVector); 787 vp.SetUpVector(fUpVector); 1461 if (verbosity >= G4VisManager::confirmati 788 if (verbosity >= G4VisManager::confirmations) { 1462 G4cout << "Up direction set to " << vp. 789 G4cout << "Up direction set to " << vp.GetUpVector() << G4endl; 1463 } 790 } 1464 } 791 } 1465 792 1466 else if (command == fpCommandViewpointTheta 793 else if (command == fpCommandViewpointThetaPhi) { 1467 G4double theta, phi; 794 G4double theta, phi; 1468 if (ConvertToDoublePair(newValue, theta, << 795 GetNewDoublePairValue(newValue, theta, phi); 1469 G4double x = std::sin (theta) * std::co << 796 G4double x = sin (theta) * cos (phi); 1470 G4double y = std::sin (theta) * std::si << 797 G4double y = sin (theta) * sin (phi); 1471 G4double z = std::cos (theta); << 798 G4double z = cos (theta); 1472 fViewpointVector = G4ThreeVector (x, y, << 799 fViewpointVector = G4ThreeVector (x, y, z); 1473 vp.SetViewAndLights(fViewpointVector); << 800 vp.SetViewAndLights(fViewpointVector); 1474 if (verbosity >= G4VisManager::confirma << 801 if (verbosity >= G4VisManager::confirmations) { 1475 G4cout << "Viewpoint direction set to << 802 G4cout << "Viewpoint direction set to " 1476 << vp.GetViewpointDirection() << G4en << 803 << vp.GetViewpointDirection() << G4endl; 1477 if (vp.GetLightsMoveWithCamera ()) { << 804 if (vp.GetLightsMoveWithCamera ()) { 1478 G4cout << "Lightpoint direction set << 805 G4cout << "Lightpoint direction set to " 1479 << vp.GetActualLightpointDirection << 806 << vp.GetActualLightpointDirection () << G4endl; 1480 } << 1481 } 807 } 1482 } 808 } 1483 } 809 } 1484 810 1485 else if (command == fpCommandViewpointVecto 811 else if (command == fpCommandViewpointVector) { 1486 G4ThreeVector viewpointVector = G4UIcomma << 812 fViewpointVector = GetNew3VectorValue(newValue); 1487 if (viewpointVector.mag2() <= 0.) { << 813 vp.SetViewAndLights(fViewpointVector); 1488 if (verbosity >= G4VisManager::errors) << 1489 G4warn << "ERROR: Null viewpoint vect << 1490 } << 1491 } else { << 1492 fViewpointVector = viewpointVector.unit << 1493 vp.SetViewAndLights(fViewpointVector); << 1494 if (verbosity >= G4VisManager::confirma << 1495 G4cout << "Viewpoint direction set to << 1496 << vp.GetViewpointDirection() << G4en << 1497 if (vp.GetLightsMoveWithCamera ()) { << 1498 G4cout << "Lightpoint direction set << 1499 << vp.GetActualLightpointDirection << 1500 } << 1501 } << 1502 } << 1503 } << 1504 << 1505 else if (command == fpCommandTimeWindowDisp << 1506 { << 1507 G4String display; << 1508 G4double screenX, screenY, screenSize, re << 1509 std::istringstream iss(newValue); << 1510 iss >> display >> screenX >> screenY << 1511 >> screenSize >> red >> green >> blue; << 1512 vp.SetDisplayHeadTime(command->ConvertToB << 1513 vp.SetDisplayHeadTimeX(screenX); << 1514 vp.SetDisplayHeadTimeY(screenY); << 1515 vp.SetDisplayHeadTimeSize(screenSize); << 1516 vp.SetDisplayHeadTimeRed(red); << 1517 vp.SetDisplayHeadTimeGreen(green); << 1518 vp.SetDisplayHeadTimeBlue(blue); << 1519 if (verbosity >= G4VisManager::confirmati << 1520 G4cout << "Display head time flag set: << 1521 << vp << 1522 << G4endl; << 1523 } << 1524 } << 1525 << 1526 else if (command == fpCommandTimeWindowDisp << 1527 { << 1528 G4String display, originX, originY, origi << 1529 G4double red, green, blue; << 1530 std::istringstream iss(newValue); << 1531 iss >> display << 1532 >> originX >> originY >> originZ >> unitS << 1533 >> originT >> unitT << 1534 >> red >> green >> blue; << 1535 vp.SetDisplayLightFront(command->ConvertT << 1536 vp.SetDisplayLightFrontX << 1537 (command->ConvertToDimensionedDouble(G4St << 1538 vp.SetDisplayLightFrontY << 1539 (command->ConvertToDimensionedDouble(G4St << 1540 vp.SetDisplayLightFrontZ << 1541 (command->ConvertToDimensionedDouble(G4St << 1542 vp.SetDisplayLightFrontT << 1543 (command->ConvertToDimensionedDouble(G4St << 1544 vp.SetDisplayLightFrontRed(red); << 1545 vp.SetDisplayLightFrontGreen(green); << 1546 vp.SetDisplayLightFrontBlue(blue); << 1547 if (verbosity >= G4VisManager::confirmati << 1548 G4cout << "Display light front flag set << 1549 << vp << 1550 << G4endl; << 1551 } << 1552 } << 1553 << 1554 else if (command == fpCommandTimeWindowEndT << 1555 { << 1556 G4String end_time_string, end_time_unit, << 1557 time_range_string, time_range_unit; << 1558 std::istringstream iss(newValue); << 1559 iss >> end_time_string >> end_time_unit << 1560 >> time_range_string >> time_range_unit; << 1561 vp.SetEndTime << 1562 (command->ConvertToDimensionedDouble << 1563 (G4String(end_time_string + ' ' + end_ti << 1564 G4double timeRange = command->ConvertToDi << 1565 (G4String(time_range_string + ' ' + time_ << 1566 if (timeRange > 0.) { << 1567 vp.SetStartTime << 1568 (vp.GetEndTime() - timeRange); << 1569 } << 1570 if (verbosity >= G4VisManager::confirmati << 1571 G4cout << 1572 << "Time window start time: " << vp.Get << 1573 << ", time window end time: " << vp.Get << 1574 if (timeRange > 0.) { << 1575 G4cout << "\n (time range: " << time << 1576 } << 1577 G4cout << G4endl; << 1578 } << 1579 } << 1580 << 1581 else if (command == fpCommandTimeWindowFade << 1582 vp.SetFadeFactor(command->ConvertToDouble << 1583 if (verbosity >= G4VisManager::confirmati 814 if (verbosity >= G4VisManager::confirmations) { 1584 G4cout << "Time window fade factor chan << 815 G4cout << "Viewpoint direction set to " 1585 << G4endl; << 816 << vp.GetViewpointDirection() << G4endl; 1586 } << 817 if (vp.GetLightsMoveWithCamera ()) { 1587 } << 818 G4cout << "Lightpoint direction set to " 1588 << 819 << vp.GetActualLightpointDirection () << G4endl; 1589 else if (command == fpCommandTimeWindowStar << 1590 { << 1591 G4String start_time_string, start_time_un << 1592 time_range_string, time_range_unit; << 1593 std::istringstream iss(newValue); << 1594 iss >> start_time_string >> start_time_un << 1595 >> time_range_string >> time_range_unit; << 1596 vp.SetStartTime << 1597 (command->ConvertToDimensionedDouble << 1598 (G4String(start_time_string + ' ' + star << 1599 G4double timeRange = command->ConvertToDi << 1600 (G4String(time_range_string + ' ' + time_ << 1601 if (timeRange > 0.) { << 1602 vp.SetEndTime << 1603 (vp.GetStartTime() + timeRange); << 1604 } << 1605 if (verbosity >= G4VisManager::confirmati << 1606 G4cout << 1607 << "Time window start time: " << vp.Get << 1608 << ", time window end time: " << vp.Get << 1609 if (timeRange > 0.) { << 1610 G4cout << "\n (time range: " << time << 1611 } 820 } 1612 G4cout << G4endl; << 1613 } 821 } 1614 } 822 } 1615 823 1616 else { 824 else { 1617 if (verbosity >= G4VisManager::errors) { 825 if (verbosity >= G4VisManager::errors) { 1618 G4warn << << 826 G4cout << 1619 "ERROR: G4VisCommandsViewerSet::SetNewV << 827 "ERROR: G4VisCommandsViewerSet::SetNewValue: unrecognised command." 1620 << G4endl; << 828 << G4endl; 1621 } 829 } 1622 return; 830 return; 1623 } 831 } 1624 832 1625 SetViewParameters(currentViewer,vp); 833 SetViewParameters(currentViewer,vp); 1626 } 834 } 1627 835