Back to home page

EIC code displayed by LXR

 
 

    


Warning, /geant4/examples/basic/README.md is written in an unsupported language. File is not indexed.

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