source: trunk/examples/extended/hadronic/Hadr01/README @ 807

Last change on this file since 807 was 807, checked in by garnier, 16 years ago

update

File size: 5.4 KB
Line 
1     =========================================================
2     Geant4 - an Object-Oriented Toolkit for Simulation in HEP
3     =========================================================
4
5
6                                 HADR01
7
8            A.Bagulya, I.Gudowska, V.Ivanchenko, N.Starkov
9                       CERN, Geneva, Switzerland
10            Karolinska Institute & Hospital, Stockholm, Sweden
11               Lebedev Physical Institute, Moscow, Russia
12
13
14This example application is based on the application IION developed for
15simulation of proton or ion beam interaction with a water target. Different
16aspects of beam target interaction are demonstrating in the example including
17logitudinal profile of energy deposition, spectra of secondary  particles,
18spectra of particles leaving the target. The results are presenting in a form
19of average numbers and histograms.
20
21
22                           GEOMETRY
23
24The Target volume is a cilinder placed inside Check cilindrical volume. The
25Check volume is placed inside the World volume. The radius and the length of
26the Check volume are 1 mm larger than the radiaus and the length of the Target.
27The material of the Check volume is the same as the World material.  The World
28volume has the sizes 10 mm larger than that of the Target volume.  Any naterial
29from the Geant4 database can be defined. The default World  material is
30G4Galactic and the default  Target material is aluminum. The Target is
31subdivided on number of equal slices. Follwoing UI commands are available to
32modify the geometry:
33
34/testhadr/TargetMat     G4_Pb
35/testhadr/WorldMat      G4_AIR
36/testhadr/TargetRadius  10 mm
37/testhadr/TargetLength  20 cm
38/testhadr/NumberDivZ    200
39
40If geometry was changed between two runs, then the follwoing command need to
41be executed:
42
43/testhadr/Update
44
45Beam direction coinsides with the target axis and is Z axis in the global
46coordinate system. The beam starts 5 mm in front of the target. G4ParticleGun
47is used as a primary generator. The energy and the type of the beam can be
48defined via standard UI commands
49
50/gun/energy   15 GeV
51/gun/particle proton
52
53Default beam position is -(targetHalfLength + 5*mm) and direction along Z axis.
54Beam position and direction can be changed by gun UI commands:
55
56/gun/position  1 10 3 mm
57/gun/direction 1 0 0
58
59however, position command is active only if before it the flag is set
60
61/testhadr/DefaultBeamPosition false   
62 
63                           SCORING
64
65The scoring is performed with the help of UserStackingAction class and two
66sensitive detector  classes: one associated with a target slice, another with
67the Check volume. Each secondary particle is scored by the StackingAction.  In
68the StackingAction it is also possible to kill all or one type of secondary
69particles
70
71/testhadr/Kill             neutron
72/testhadr/KillAllSecondaries 
73
74To control running the following options are available:
75
76/testhadr/PrintModulo      100
77/testhadr/DebugEvent       977
78
79The last command selects an events, for which "/tracking/verbose 2" level
80of printout is established.
81
82
83                           PHYSICS
84
85PhysicsList of the application uses components, which are distributed with
86Geant4 in /geant4/physics_lists subdirectory. So, before compiling hadro01 it
87is necessary to compile physics_lists
88
89The choice of the physics is provided by the UI command:
90
91/testhadr/Physics     QGSP
92
93The command
94
95/testhadr/Physics     PHYSLIST
96
97allows allows to download a physics configuration defined by an environment
98variable PHYSLIST.
99
100To see the list of available configurations one can use
101
102/testhadr/ListPhysics
103
104The cuts for electromagnetic phsyics can be established via
105
106/testhadr/CutsAll       1 mm
107/testhadr/CutsGamma   0.1 mm
108/testhadr/CutsEl      0.2 mm
109/testhadr/CutsPos     0.3 mm
110
111
112                          VISUALISATION
113
114For interactive mode G4 visualization options and variables should be
115defined, then the example should be recompiled:
116
117gmake visclean
118gmake
119
120The vis.mac file can be used an example of visualization. The following command can
121be used:
122
123/testhadr/DrawTracks  charged
124/testhadr/DrawTracks  charged+n
125/testhadr/DrawTracks  neutral
126/testhadr/DrawTracks  all
127
128
129                          HISTOGRAMS
130
131To use histograms any of implementations of AIDA interfaces should
132be available (see http://aida.freehep.org).
133
134A package including AIDA and extended interfaces also using Python
135is PI, available from: http://cern.ch/pi .
136
137Once installed PI or PI-Lite in a specified local area $PI_DIR, it is
138required to add the installation path to $PATH, i.e. for example,
139for release 1.2.1 of PI:
140
141setenv PATH ${PATH}:$PI_DIR/1.3.12/app/releases/PI/PI_1_3_12/slc3_gcc323/bin
142
143CERN users can use the PATH to the LCG area on AFS.
144
145Before compilation of the example it is optimal to clean up old
146files:
147
148gmake histclean
149setenv G4ANALYSIS_USE 1
150gmake
151
152Before running the example the command should be issued:
153
154eval `aida-config --runtime csh`
155
156It is possible to choose the format of the output file with
157histograms using UI command:
158
159/testhadr/HistoName   name
160/testhadr/HistoType   type
161/testhadr/HistoOption "uncompress"
162
163The following types are available: hbook, root, aida. They will be
164stored in the file "name.hbook", "name.root", or "name.aida".
165If the environment variable HISTODIR is defined, files are stored in this
166subdirectory.
167
168To show the contence of a histogram ID=i the commands may be applied:
169
170/testhadr/HistoPrint  i
171
172All histograms are normalised to the number of events.
Note: See TracBrowser for help on using the repository browser.