Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/examples/extended/hadronic/NeutronSource/

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

Name Size       Last modified (GMT) Description
Back Parent directory       2024-12-05 15:16:16
Folder include/       2024-12-05 15:16:16
Folder src/       2024-12-05 15:16:16
File CMakeLists.txt 2213 bytes       2024-12-05 15:16:16
File GNUmakefile 405 bytes       2024-12-05 15:16:16
File History 5165 bytes       2024-12-05 15:16:16
C++ file NeutronSource.cc 4409 bytes       2024-12-05 15:16:16
File NeutronSource.out 25471 bytes       2024-12-05 15:16:16
File README 5801 bytes       2024-12-05 15:16:16
File debug.mac 345 bytes       2024-12-05 15:16:16
File envHadronic.csh 490 bytes       2024-12-05 15:16:16
File envHadronic.sh 466 bytes       2024-12-05 15:16:16
File neutronSource.in 671 bytes       2024-12-05 15:16:16
File plotHisto.C 283 bytes       2024-12-05 15:16:16
File run1.mac 633 bytes       2024-12-05 15:16:16
File vis.mac 2344 bytes       2024-12-05 15:16:16

  1 
  2      =========================================================
  3      Geant4 - an Object-Oriented Toolkit for Simulation in HEP
  4      =========================================================
  5 
  6                             NeutronSource
  7                             -------------
  8 
  9    NeutronSource is an example of neutrons production. It illustrates the cooperative work
 10    of nuclear reactions and radioactive decay processes.
 11    It survey energy deposition and particle's flux.
 12    It uses PhysicsConstructor objects.
 13 
 14   
 15  1- MATERIALS AND GEOMETRY DEFINITION
 16  
 17    The geometry is a cylinder (absorber) of an homogenous material (default : Beryllium oxide).
 18    This absorber is within a container (default : stainless-steel).
 19 
 20    Five parameters define the geometry :
 21   - the material of the absorber
 22   - the radius and length of the absorber
 23   - the material of the container
 24   - the thickness of the container
 25   
 26    The default geometry is built in DetectorConstruction, but the above
 27    parameters can be changed interactively via commands defined in DetectorMessenger.
 28    
 29    The container is surrounded by a World volume (air)
 30    
 31    A function, and its associated UI command, allows to build a material
 32    directly from a single isotope.
 33    
 34    To be identified by the ThermalScattering module, the elements composing a
 35    material must have a specific name (see G4ParticleHPThermalScatteringNames.cc)
 36    Examples of such materials are build in DetectorConstruction of Hadr04,06,07.
 37   
 38  2- PHYSICS LIST
 39    
 40   "Full" set of physics processes are registered, but via PhysicsConstructor
 41   objects rather than complete pre-defined G4 physics lists. This alternative 
 42   way may give more freedom to register physics.
 43   
 44   Physics constructors are either constructors provided in Geant4 (with G4 prefix)
 45   or 'local'. They include : HadronElastic, HadronInelastic, IonsInelastic, GammaNuclear,
 46   RadioactiveDecay and Electomagnetic.
 47   (see geant4/source/physics_lists/constructors)
 48 
 49   HadronElasticPhysicsHP include a model for thermalized neutrons, under the control of a command
 50   defined in NeutronHPMesseger.
 51 
 52   GammmaNuclearPhysics is a subset of G4BertiniElectroNuclearBuilder.
 53 
 54   ElectromagneticPhysics is a simplified version of G4EmStandardPhysics.
 55 
 56   In PhysicsList::ConstructProcess() we give an example of how to access hadronic models.
 57 
 58   Several hadronic physics options are controlled by environment variables.
 59   To select them, see NeutronSource.cc
 60    
 61  3- AN EVENT : THE PRIMARY GENERATOR
 62  
 63    The primary kinematic is a single particle uniformly shooted within the absorber.
 64    The type of the particle and its energy are set in PrimaryGeneratorAction (Am241, at rest),
 65    and can be changed via the G4 build-in commands of ParticleGun class 
 66    (see the macros provided with this example).
 67   
 68  4- PHYSICS
 69 
 70    The program computes and plots energy deposited in the interaction volume
 71    (absorber + container) and the flux of particles leaving this volume.
 72    Processes invoked and particles generated during hadronic cascade are listed.
 73 
 74  5- HISTOGRAMS
 75          
 76    The test contains 13 built-in 1D histograms, which are managed by
 77    G4AnalysisManager and its Messenger. The histos can be individually 
 78    activated with the command :
 79    /analysis/h1/set id nbBins  valMin valMax unit 
 80    where unit is the desired unit for the histo (MeV or keV, etc..)
 81    (see the macros xxxx.mac).
 82    
 83             1     "total energy deposit"
 84             2     "dummy"
 85             3     "total kinetic energy flow"
 86             4     "energy spectrum of emerging gamma"
 87             5     "energy spectrum of emerging e+-"
 88             6     "energy spectrum of emerging neutrons"
 89             7     "energy spectrum of emerging protons"
 90             8     "energy spectrum of emerging deuterons"
 91             9     "energy spectrum of emerging alphas"
 92             10    "energy spectrum of all others emerging ions"
 93             11    "energy spectrum of all others emerging baryons"
 94             12    "energy spectrum of all others emerging mesons"
 95             13    "energy spectrum of all others emerging leptons (neutrinos)" 
 96       
 97    The histograms are managed by the HistoManager class and its Messenger. 
 98    The histos can be individually activated with the command :
 99    /analysis/h1/set id nbBins  valMin valMax unit 
100    where unit is the desired unit for the histo (MeV or keV, deg or mrad, etc..)
101    
102    One can control the name of the histograms file with the command:
103    /analysis/setFileName  name  (default NeutronSource)
104    
105    It is possible to choose the format of the histogram file : root (default),
106    xml, csv, by using namespace in HistoManager.hh
107        
108    It is also possible to print selected histograms on an ascii file:
109    /analysis/h1/setAscii id
110    All selected histos will be written on a file name.ascii (default NeutronSource) 
111           
112  6- VISUALIZATION
113  
114    The Visualization Manager is set in the main().
115    The initialisation of the drawing is done via the commands
116    /vis/... in the macro vis.mac. To get visualisation:
117    > /control/execute vis.mac
118   
119    The tracks are drawn at the end of event, and erased at the end of run.   
120    gamma green   
121    neutron yellow
122    negative particles (e-, ...) red
123    positive particles (e+, ions, ...) blue
124   
125  7- HOW TO START ?
126  
127    Execute NeutronSource in 'batch' mode from macro files :
128   % NeutronSource  run1.mac
129   % NeutronSource  neutronSource.in > neutronSource.out
130     
131    Execute NeutronSource in 'interactive mode' with visualization :
132   % NeutronSource
133   Idle> control/execute vis.mac
134   ....
135   Idle> type your commands
136   ....
137   Idle> exit
138   
139  Macros provided in this example:
140   - run1.mac: Am-Be system (default configuration)
141   
142  Macros to be run interactively:
143   - debug.mac: Am-Be
144   - vis.mac: To activate visualization