source: trunk/examples/advanced/hadrontherapy/physicsHadronicPrecompound.mac @ 1317

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

update

File size: 2.5 KB
Line 
1############################################################################
2#
3# PHYSICS LIST:
4# =============
5#
6#  Decay:
7#  ------
8#    * Decay of all unstable particles
9#
10#
11#  Electromagnetic Physics
12#  -----------------------
13#    * Livermore-based models for photons, electrons
14#    * ICRU49-based models for charged hadrons, ions
15#    * Standard models for positrons, muons
16#
17#
18#  Hadronic Physics (elastic)
19#  --------------------------
20#    * LEP elastic scattering model for hadrons (protons,
21#      neutrons, pions), ions (deuterons, tritons, alphas)
22#
23#
24#  Hadronic Physics (inelastic)
25#  ----------------------------
26#    * Precompound model for protons, neutrons
27#       Options: A. Default evaporation, no Fermi break-up (activated)
28#                B. GEM evaporation, no Fermi break-up
29#                C. GEM evaporation, Fermi break-up
30#                D. Default evaporation evaporation, Fermi break-up
31#    * Fission and capture models for neutrons
32#    * LEP model for ions (deuterons, tritons, alphas)
33#    * LEP model for pions (pions+, pions-)
34#
35#
36#  Hadronic Physics (inelastic)
37#  ----------------------------
38#    * Capture model for muons-
39#
40##############################################################################
41
42
43####################
44# VERBOSITY LEVELS #
45####################
46
47/control/verbose 1
48/tracking/verbose 0
49/run/verbose 0
50/event/verbose 0
51
52
53###########
54# PHYSICS #
55###########
56
57###  A) EM PHYSICS AND DECAY
58
59/physics/addPhysics Decay
60/physics/addPhysics EM-Photon-EPDL
61/physics/addPhysics EM-Electron-EEDL
62/physics/addPhysics EM-Positron-Standard
63/physics/addPhysics EM-HadronIon-LowE
64/physics/addPhysics EM-Muon-Standard
65
66###  B) HADRONIC PHYSICS
67
68/physics/addPhysics HadronicEl-HadronIon-LElastic
69/physics/addPhysics HadronicInel-ProtonNeutron-Prec
70### Other options for Precompound model (for a description see above):
71### Option B. /physics/addPhysics HadronicInel-ProtonNeutron-PrecGEM
72### Option C. /physics/addPhysics HadronicInel-ProtonNeutron-PrecGEMFermi
73### Option D. /physics/addPhysics HadronicInel-ProtonNeutron-PrecFermi
74/physics/addPhysics HadronicInel-Ion-LEP
75/physics/addPhysics HadronicInel-Pion-LEP
76/physics/addPhysics HadronicAtRest-MuonMinus-Capture
77
78
79##############################
80# BEAM LINE SETTINGS AND RUN #
81##############################
82
83/run/initialize
84
85###  IF YOU WANT A RANGE SHIFTER PLEASE CHANGE
86###  THE FOLLOWIG PARAMETERS
87###  SETTING FOR THE RANGE SHIFTER
88
89#/beamLine/RangeShifter/thickness 4 cm
90#/beamLine/RangeShifter/RSMat Water
91
92/run/beamOn 200
93
94
95
Note: See TracBrowser for help on using the repository browser.