Import Geant4 11.4.0 source tree

This commit is contained in:
Gabriele Cosmo
2025-12-05 08:54:02 +01:00
parent a499fb82e9
commit b4a16de652
6484 changed files with 232674 additions and 221097 deletions
@@ -0,0 +1,33 @@
\page ExampleuserVisAction Example userVisAction
examples/extended/visualization/userVisAction
This example illustrates how to create a "vis action".
The idea is that you register a vis action with the vis manager and
activate it by a command `/vis/scene/add/userAction`. In this case, it
draws a simple logo.
1) UVA_VisAction.cc defines a G4VUserVisAction and implements a Draw
method.
2) In the main() program, UVA_VisAction is instantiated and
its pointer registerd with the visualization manager. You may
optionally specify an extent at this point to assist the viewers to
locate the objects.
3) To visualise, use the usual Geant4 vis commands to create a view
and scene, then add the vis action to the scene with
```
/vis/scene/add/userAction
```
see vis.mac.
Note: The system needs an "extent" in order to point the virtual
camera and adjust its field of view, etc. This defines the "standard
view". You may zoom, etc., from this standard view. The extent may
be specified as suggested above or by using /vis/scene/add/extent.
John Allison
27th November 2014