source: trunk/examples/novice/N05/vis.mac @ 1342

Last change on this file since 1342 was 1313, checked in by garnier, 14 years ago

geant4.9.4 beta rc0

File size: 2.2 KB
Line 
1# Use this open statement to create an OpenGL view:
2/vis/open OGL 600x600-0+0
3#
4# Use this open statement to create a .prim file suitable for
5# viewing in DAWN:
6#/vis/open DAWNFILE
7#
8# Use this open statement to create a .heprep file suitable for
9# viewing in HepRApp:
10#/vis/open HepRepFile
11#
12# Use this open statement to create a .wrl file suitable for
13# viewing in a VRML viewer:
14#/vis/open VRML2FILE
15#
16# Disable auto refresh and quieten vis messages whilst scene and
17# trajectories are established:
18/vis/viewer/set/autoRefresh false
19/vis/verbose errors
20#
21# Draw geometry:
22/vis/drawVolume worlds
23#
24# Set specific colour for identification : ghost parallel geometry envelope ("ghost") as yellow
25/vis/geometry/set/colour GhostLogical ! yellow
26#
27# Specify view angle:
28/vis/viewer/set/viewpointThetaPhi -90 0 deg
29#
30# Specify zoom value:
31/vis/viewer/zoom 2.5
32#
33# Specify style (surface or wireframe):
34#/vis/viewer/set/style wireframe
35#
36# Draw coordinate axes:
37#/vis/scene/add/axes 0 0 0 1 m
38#
39# Draw smooth trajectories at end of event, showing trajectory points
40# as markers 2 pixels wide:
41/vis/scene/add/trajectories smooth
42/vis/modeling/trajectories/create/drawByCharge
43/vis/modeling/trajectories/drawByCharge-0/default/setDrawStepPts true
44/vis/modeling/trajectories/drawByCharge-0/default/setStepPtsSize 2
45# (if too many tracks cause core dump => /tracking/storeTrajectory 0)
46#
47# Draw hits at end of event:
48#/vis/scene/add/hits
49#
50# To draw only gammas:
51#/vis/filtering/trajectories/create/particleFilter
52#/vis/filtering/trajectories/particleFilter-0/add gamma
53#
54# To invert the above, drawing all particles except gammas,
55# keep the above two lines but also add:
56#/vis/filtering/trajectories/particleFilter-0/invert true
57#
58# Many other options are available with /vis/modeling and /vis/filtering.
59# For example, to select colour by particle ID:
60#/vis/modeling/trajectories/create/drawByParticleID
61#/vis/modeling/trajectories/drawByParticleID-0/set e- blue
62#
63# To superimpose all of the events from a given run:
64/vis/scene/endOfEventAction accumulate
65#
66# Re-establish auto refreshing and verbosity:
67/vis/viewer/set/autoRefresh true
68/vis/verbose warnings
69#
70# For file-based drivers, use this to create an empty detector view:
71#/vis/viewer/flush
Note: See TracBrowser for help on using the repository browser.