Warning, /geant4/examples/basic/README is written in an unsupported language. File is not indexed.
0001 -------------------------------------------------------------------
0002
0003 =========================================================
0004 Geant4 - an Object-Oriented Toolkit for Simulation in HEP
0005 =========================================================
0006
0007 Basic Examples
0008 ----------------
0009
0010 The set of basic examples is oriented to "novice" users and covering many
0011 basic general use-cases typical of an "application"-oriented kind of
0012 development.
0013
0014 ExampleB1
0015 - Simple geometry with a few solids
0016 - Geometry with simple placements (G4PVPlacement)
0017 - Scoring total dose in a selected volume user action classes
0018 - Using G4Accumulable for automatic merging of scored values in multi-threading mode
0019 - Geant4 physics list (QBBC)
0020
0021 ExampleB2
0022 - Simplified tracker geometry with global constant magnetic field
0023 - Geometry with simple placements (G4PVPlacement) and parameterisation
0024 (G4PVParameterisation)
0025 - Scoring within tracker via G4 sensitive detector and hits
0026 - Geant4 physics list (FTFP_BERT) with step limiter
0027 - Started from novice/N02 example
0028
0029 ExampleB3
0030 - Schematic Positron Emitted Tomography system
0031 - Geometry with simple placements with rotation (G4PVPlacement)
0032 - Radioactive source
0033 - Scoring within Crystals via G4 scorers
0034 - Using G4Accumulable for automatic merging of scored values in multi-threading mode (a)
0035 and G4StatAnalysis for accumulating statistics (b)
0036 - Modular physics list built via builders provided in Geant4
0037
0038 ExampleB4
0039 - Simplified calorimeter with layers of two materials
0040 - Geometry with replica (G4PVReplica)
0041 - Scoring within layers in four ways: via user actions (a), via user own
0042 object (b), via G4 sensitive detector and hits (c) and via scorers (d)
0043 - Geant4 physics list (FTFP_BERT)
0044 - Histograms (1D) and ntuple saved in the output file
0045 - Started from novice/N03 example
0046
0047 ExampleB5
0048 - A double-arm spectrometer with wire chambers, hodoscopes and calorimeters
0049 with a local constant magnetic field
0050 - Geometry with placements with rotation, replicas and parameterisation
0051 - Scoring within wire chambers, hodoscopes and calorimeters via
0052 G4 sensitive detector and hits
0053 - Geant4 physics list (FTFP_BERT) with step limiter
0054 - UI commans defined using G4GenericMessenger
0055 - Histograms (1D, 2D) and ntuple saved in two output files
0056 - Plotting of histograms with visualization drivers
0057 - Offscreen drawing with TSG
0058 - Started from extended/analysis/A01