An Interface for Using EGS4 Physics Processes in Geant4 - PowerPoint PPT Presentation

1 / 24
About This Presentation
Title:

An Interface for Using EGS4 Physics Processes in Geant4

Description:

Geant4 has rich flexibility and expansibility for adding physics processes, in ... This work is a proof of flexibility and expansibility of the Geant4 framework. ... – PowerPoint PPT presentation

Number of Views:31
Avg rating:3.0/5.0
Slides: 25
Provided by: legacywe
Category:

less

Transcript and Presenter's Notes

Title: An Interface for Using EGS4 Physics Processes in Geant4


1
An Interface for Using EGS4 Physics Processesin
Geant4
  • K.Murakami (KEK)
  • 6/Sep./2003
  • Geant4 Workshop 2003 (TRIUMF)

2
Outline
  • Introduction
  • System Analysis
  • Design Details
  • Users Side View
  • Summary

3
Introduction
  • Geant4 has rich flexibility and expansibility for
    adding physics processes, in addition to its
    powerful geometry description.
  • It is not easy to describe complicated/realistic
    geometry for EGS4 users.
  • Taking advantage of the capabilities of Geant4 as
    a framework, we developed an interface for using
    EGS4 as a module of physics process in Geant4.
  • By means of this interface,
  • EGS4 users can share Geant4 powerful resources,
    such as geometry description, tracking etc.
  • A common environment for comparison tests between
    EGS4 and Geant4 especially in users realistic
    application level.

4
II. System Analysis
5
Analysis of EGS4 System- in terms of difference
from Geant4-
  • We first carried out analysis of the EGS4 system
    in terms of difference from Geant4.
  • Our policy is that we should care for NOT to
    change algorithms and prescriptions which are
    used in the EGS4 system.
  • Issue-1 A way of calculation of step size and
    process selection
  • In Geant4, each process has its own fate in terms
    of NIL (N of Interaction Length). Then, a process
    having minimum fate will occur.
  • In EGS4, the next step size is calculated based
    on the total cross section of a particle. Then,
    which process will occur is chosen at the rate of
    branching fraction of a process.
  • In principle, these work in the same manner.
    Good!!
  • We implemented the EGS physics processes as
    single Geant4 processes for electron/photon
    respectively.

6
Analysis of EGS4 System (Contd)
  • Issue-2 Scheme of describing material
    information
  • In Geant4,
  • Material information has only properties of
    material itself (atomic number/mass, density,
    composition...)
  • Cross section tables are calculated at
    initialization time.
  • In EGS4,
  • Users have to prepare a material (cross section)
    file by executing PEGS, which is an external
    program, preceding to execution of a EGS4
    program.
  • Additional information related to processes
    (cutoff, parameters/coefficients of formulas) are
    described as material.
  • We manage material information in terms of both
    of Geant4 and EGS4.
  • Users have to execute PEGS externally and our
    interface manages material information listed in
    a PEGS output file.
  • A mapping table between G4 materials and EGS4
    materials is prepared.
  • Issue-3 Cutoff scheme
  • In Geant4,
  • There is no cutoff energy. Particles basically
    will be transported until they have zero kinetic
    energy.
  • An idea of production cut is introduced to avoid
    infrared divergence.
  • In EGS4,
  • An idea of cutoff energy is applied. Particles
    below cutoff energy will be discarded.

7
Table of ComponentsWhich package is used?
  • Control Framework EGS4 Geant4
  • Tracking EGS4 Geant4
  • Geometry EGS4 Geant4
  • Materials EGS4 Geant4
  • Cross Section Table EGS4 Geant4
  • (PEGS)
  • Physics Process EGS4 Geant4
  • Cutoff Scheme EGS4 Geant4

8
III. Design Details
9
Functional Mapping
  • EGS4 Flow
  • SHOWER ?
  • (tracking controller)
  • ELECTOR ?
  • PHOTON
  • (controller for stepping and
  • process invocation)
  • HOWFAR ?
  • (geometry and navigation,
  • user code)
  • each Physics Process ?
  • COMPT
  • BREMS
  • ...
  • Geant4 Class
  • tracking manager
  • stepping manager
  • single process for electron
  • single process for photon
  • GPIL() (GetPhysicalInteractionLength)
  • calculating the next interaction point
  • DoIt()
  • describing a reaction
  • G4 geometry
  • G4 transportation (as a process)
  • reused as-is
  • wrapped with FORTRAN-C interface

EGS4 subroutines
10
Parts List
  • Manager
  • EGS2G4Manager
  • which is automatically instantiated/deleted from
    an actual process class.
  • Users dont have to take care of it.
  • Management of material information
  • EGS2G4Material / EGS2G4PegsMaterial
  • EGS2G4MaterialStore / EGS2G4PegsMaterialStore
  • Implementation of actual processes
  • EGS2G4VProcess / EGS2G4eProcess / EGS2G4gProcess
  • Controller for user parameters/flags
  • EGS2G4ParameterStore/EGS2G4TParameter
  • All parameters/flags of EGS4 can be accessed via
    G4 user commands at run time.
  • Users dont have to re-compile any EGS4 library.

Prefix of classes is EGS2G4.
11
(No Transcript)
12
How It Works
g4mate
g4change
egsmate
  • A virtual volume with
  • no dimensions
  • empty media

evacuation
update
g4-egs material map
egs stack
g4track
egs stack
egs stack
update
  • In the EGS4 world, a single virtual volume with
  • no dimensions (transportation is a G4 job)
  • empty medium (dynamically updated)
  • is prepared.
  • At tracking time,
  • Medium information of the EGS4 volume is updated
    at every step though the material map from G4 to
    EGS4.
  • Kinematical information in the EGS4 stack is
    updated from G4 track.
  • A EGS4 process is invoked.
  • The stack information of EGS4 is evacuated to a
    G4 particle-change.

13
Material Description
G4-EGS Material Map
EGS4 World
PEGS Material
EGS Material
Geant4 World
G4Material
  • There are three classes describing materials
  • PEGS Material
  • It describes materials defined in a PEGS output.
  • EGS Material
  • It has a PEGSMaterial.
  • In addition, it has information, such as
  • user cutoffs, user density, user flags, ...
  • G4 Material
  • A G4Material is related to a EGSMaterial by users
    at initialization time.
  • A G4Material is translated to a EGSMaterial
    through the map at tracking time.

14
Implementation of Physics Process
  • Single process per electron/photon respectively
  • easy to translate the flow control of EGS4
  • GPIL() is based on total cross section
  • Actual process is selected in DoIt().
  • EGS2G4VProcess
  • has common utility methods
  • conversion from G4Material to EGSMaterial
  • communication with the EGS4 stack...
  • EGS2G4gProcess
  • implemented as a discrete process
  • EGS2G4eProcess
  • implemented as a continuous-discrete-at-rest
    process

G4VProcess
EGS2G4VProcess
EGS2G4gProcess
(EGS4PHOTON)
EGS2G4eProcess
(EGS4ELECTR)
15
Treatment of Cutoff
  • We dont disturb the cutoff treatment carried out
    in EGS4!! This is our policy.
  • Basically, a particle below the cutoff will be
    discarded with depositing its kinetic energy.
  • Positron will be stopped but still alive and
    followed by annihilation.
  • Notes
  • There are two cutoff-s in EGS4.
  • AP/AE (for photon/electron)
  • UP/UE (upper-side limit)
  • which are given in PEGS and utilized as energy
    windows of cross section tables.
  • AP/AE works also as production thresholds for
    brems. / Moller.
  • For UP/UE, we provide a safety scheme not to
    exceed energy limit of cross section tables.
  • PCUT/ECUT
  • which are EGS user cutoff. (attributes of
    EGSMaterial)

16
Process List Currently Covered
  • As the first target, we started with interfacing
    with a plain EGS4 (distributed as a KEK version).
  • Photon processes
  • Rayleigh scattering
  • pair production
  • photo-electric effect
  • w/ subsequent fluorescence
  • Compton scattering
  • Electron processes
  • multiple scattering
  • momentum flip only.
  • lateral displacement is not included.
  • continuous energy loss
  • Bremsstrahlung
  • Møller scattering (e-)
  • BhaBha(e)
  • positron annihilation (e)
  • (in-flight / at-rest)

To simulate multiple scattering more precisely,
PRESTA have to be included.
17
IV. Users Side View
18
Product Hierarchy
EMegs Physics List
EMegsPhysics public G4VPhysicsConstructo
r A modular PhysicsList for EM physics
EGS2G4 package
Another G4 library for EM physics libEGS2G4.a
Another EGS4 library for G4 GNUmake ? cpp
? MORTRAN ? F77 ? libegs4g4.a
EGS4g4 package
19
View from Users Side
  • User Physics List
  • An alternative EM-physics list is provided as a
    modular Physics List for EM w/ EGS4 processes.
  • User Detector Construction (Geometry)
  • Users dont have to modify any existing Geant4
    geometry codes.
  • Users make assignment of a Geant4 material to a
    EGS4 material by hands.
  • Cross Section Table
  • Users have to execute PEGS externally.
  • define PEGS materials in PEGS input files.
  • execute PEGS to generate a cross section file
    (so-called PEGS output).
  • All operations can be performed via G4 command
    line interface interactively.
  • assigning G4Material to EGSMaterial
  • setting users parameters
  • initialization, ...

20
Example of Material Session
  • user macro to set up EGS matetials
  • create EGS materials egs nama pegs name
    g4 name
  • /process/egs4/material/create AIR ! Air
  • /process/egs4/material/create PB PB Lead
  • /process/egs4/material/create PB-2 PB
  • /process/egs4/material/create NAI ! NaI
  • assing g4 mate. to egs mate.
  • /process/egs4/material/assign Vacuum VACUUM
  • set user cutoff
  • /process/egs4/material/setCuts NAI 0.1 0.7
  • /process/egs4/setPegsFile pegs.dat
  • /process/egs4/initialize

Command directory path /process/egs4/material/ G
uidance commands relevant to EGS materials
Sub-directories /process/egs4/material/pegs/
commands for PEGS materials Commands
create create a EGS material setPegs
set a Pegs material to a EGS material assign
assign a material(G4) to a material(EGS)
clearAssingment clear assignment list of
G4Material dump dump EGS material
information print print EGS material
information (EGS-gtG4) printMap print EGS
material information (G4-gtEGS) listG4Material
list materials(G4) defined erase
erase a EGS material clearAll clear EGS
materials setCuts set cutoff energy (in
MeV) for photon/electronto
a EGS material setIRAYLR set a flag of
Rayleigh scattering setIEDGFL set IEDGFL
parameter (K-shell fluorescence) setRHOR set
user density (in g/cm3) setDefaultParams set
defaut parameters
b00(Idle)/process/egs4/material/dump
NAI ----------------------------------------------
--------------------------- (_at_) EGS material
name -gt PEGS medium name -gt G4Material
name ---------------------------------------------
---------------------------- (o)NAI
"NAI "NaI
_at_PEGS0x8d06600 AP0.010 , UP100.000 ,
PCUT0.010 (MeV) AE0.521 , UE100.511
, ECUT0.521 (MeV) URho/Rho3.667 /3.667
(g/cm3) 1.000 IRAYL 1, IRAYLM 1,
IEDGFL 0 tb00(Idle)//process/egs4/material/p
rintMap -----------------------------------------
-------------------------------- (_at_) EGS
material name -gt PEGS medium name lt-
G4Material name ----------------------------------
--------------------------------------- (o)VACUUM
"VACUUM
"Vacuum (o)AIR "AIR
"Air (-)n/a
"
"ArEthane (o)PB
"PB
"Lead (o)SCINTI "SCINTI
"Scinti (o)NAI
"NAI "NaI
21
  • Sample Event Display

5 electrons with Ek50 MeV into a slab geometry
composed of several materials. w/ cutoff Ek10
keV
Robustness several-M events in a simple geometry
were successfully generated without crush.
22
Status and Plans
  • First implementation was finished.
  • Detail system check and benchmark tests are
    started as the next target.
  • We have plans of comparisons
  • between EGS4 itself and the EGS4-G4 interface.
  • between G4 and EGS4(w/ the interface) on common
    geometries.
  • Technical study for treating PRESTA is planned
    for more precise simulation.
  • The treatment of multiple scattering is closely
    coupled with geometry (boundary).

23
Summary
  • We have successfully developed the first version
    of an interface between EGS4 and Geant4 based on
    OO-approach.
  • This work is a proof of flexibility and
    expansibility of the Geant4 framework.
  • By means of this interface, EGS4 users will be
    able to share Geant4 powerful resources, such as
    geometry description, tracking etc.
  • Further detail benchmarks are on going.

24
Acknowledgements
  • This activity is proceeded under KEK-SLAC
    collaboration.
  • Thanks to co-workers
  • K.Amako (KEK)
  • T.Sasaki (KEK)
  • H.Hirayama (KEK)
  • Y.Namito (KEK)
  • M.Asai (SLAC)
  • T.Koi (SLAC)
Write a Comment
User Comments (0)
About PowerShow.com