Ignore:
Timestamp:
Nov 5, 2010, 4:08:39 PM (15 years ago)
Author:
garnier
Message:

update ti head

Location:
trunk/examples/extended/electromagnetic/TestEm7
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • trunk/examples/extended/electromagnetic/TestEm7/GNUmakefile

    r1230 r1342  
    1 # $Id: GNUmakefile,v 1.11 2008/09/21 16:03:10 vnivanch Exp $
     1# $Id: GNUmakefile,v 1.12 2010/09/17 18:45:43 maire Exp $
    22# --------------------------------------------------------------
    33# GNUmakefile for examples module.  Gabriele Cosmo, 06/04/98.
     
    2626
    2727histclean:
    28         rm ${G4WORKDIR}/tmp/${G4SYSTEM}/${G4TARGET}/Histo.o
     28        rm ${G4WORKDIR}/tmp/${G4SYSTEM}/${G4TARGET}/HistoManager.o
  • trunk/examples/extended/electromagnetic/TestEm7/History

    r1337 r1342  
    1 $Id: History,v 1.96 2010/06/21 10:24:48 vnivanch Exp $
     1$Id: History,v 1.99 2010/10/13 12:21:56 vnivanch Exp $
    22-------------------------------------------------------------------
    33
     
    1616     ----------------------------------------------------------
    1717
     1813-10-10 V.Ivant (testem7-V09-03-07)
     19- PhysListEmStandardNR - removed obsolete set of nuclear stopping flag
     20     
     2121-09-10 mma (testem7-V09-03-06)
     22- add HistoManager in cvs !     
     23     
     2417-09-10 mma (testem7-V09-03-05)
     25- use 'standard' HistoManager
     26- fixe normalisation factor in histos 2 and 3
     27
    182821-06-10 V.Ivant (testem7-V09-03-04)
    19 - Cleanup Histo according to epert recommendations
     29- Cleanup Histo according to expert recommendations
    2030     
    213106-06-10 J.Perl (testem7-V09-03-03)
  • trunk/examples/extended/electromagnetic/TestEm7/README

    r1337 r1342  
    1 $Id: README,v 1.22 2009/11/21 22:02:51 maire Exp $
     1$Id: README,v 1.23 2010/09/17 18:45:43 maire Exp $
    22-------------------------------------------------------------------
    33
     
    144144     The total energy deposited is plotted in MeV/mm per incident particle. 
    145145
    146      The next histogram alowing to have a zoom around the Bragg peak. Its binning
     146     The next histogram allows to have a zoom around the Bragg peak. Its bining
    147147     should be defined via UI command:
    148      /testem/histo/setHisto 1 nbins xmin xmax
     148     /testem/histo/setHisto 2 nbins xmin xmax unit
    149149
    150      The last histogram shows the projectile range. Its binning should be defined
     150     The last histogram shows the projectile range. Its bining should be defined
    151151     similary by the UI command:
    152      /testem/histo/setHisto 2 nbins xmin xmax
     152     /testem/histo/setHisto 3 nbins xmin xmax unit
    153153     
    154154  8- USING HISTOGRAMS
     
    165165        gmake
    166166
    167      It is possible to choose the format of the histogram file (hbook, root, XML):
    168      /testem/histo/setHistoType root
     167     One can choose the format of the histogram file (hbook, root, XML):
     168     /testem/histo/setFileType root
    169169
    170170     The default name "testem7" can be changed:
    171      /testem/histo/setHistoName myname
     171     /testem/histo/setFileName myname
  • trunk/examples/extended/electromagnetic/TestEm7/TestEm7.cc

    r1337 r1342  
    2424// ********************************************************************
    2525//
    26 // $Id: TestEm7.cc,v 1.9 2010/05/21 18:00:26 maire Exp $
    27 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     26// $Id: TestEm7.cc,v 1.10 2010/09/17 18:45:43 maire Exp $
     27// GEANT4 tag $Name: examples-V09-03-09 $
    2828//
    2929//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     
    4343#include "SteppingAction.hh"
    4444#include "SteppingVerbose.hh"
     45#include "HistoManager.hh"
    4546
    4647#ifdef G4VIS_USE
     
    6667
    6768  //set mandatory initialization classes
    68   DetectorConstruction* det;
    69   PhysicsList* phys;
    70   PrimaryGeneratorAction* kin;
    71   runManager->SetUserInitialization(det  = new DetectorConstruction);
    72   runManager->SetUserInitialization(phys = new PhysicsList);
    73   runManager->SetUserAction(kin = new PrimaryGeneratorAction(det));
     69  //
     70  DetectorConstruction*   det  = new DetectorConstruction();
     71  PhysicsList*            phys = new PhysicsList();
     72 
     73  runManager->SetUserInitialization(det);
     74  runManager->SetUserInitialization(phys);
    7475 
    7576  //set user action classes
    76    RunAction* run;
     77  //
     78  HistoManager*           histo = new HistoManager();
     79  PrimaryGeneratorAction* kin   = new PrimaryGeneratorAction(det); 
     80  RunAction*              run   = new RunAction(det,phys,histo,kin);
     81  EventAction*            event = new EventAction();
     82  TrackingAction*         track = new TrackingAction(det,histo,run);
     83  SteppingAction*         step  = new SteppingAction(det,histo,run);
    7784 
    78   runManager->SetUserAction(run = new RunAction(det,phys,kin));
    79   runManager->SetUserAction(new EventAction);
    80   runManager->SetUserAction(new TrackingAction(run)); 
    81   runManager->SetUserAction(new SteppingAction(det,run));
     85  runManager->SetUserAction(kin);
     86  runManager->SetUserAction(run);
     87  runManager->SetUserAction(event);
     88  runManager->SetUserAction(track); 
     89  runManager->SetUserAction(step);
    8290
    8391  //get the pointer to the User Interface manager
  • trunk/examples/extended/electromagnetic/TestEm7/TestEm7.out

    r1337 r1342  
    55
    66*************************************************************
    7  Geant4 version Name: geant4-09-03-ref-06    (25-June-2010)
     7 Geant4 version Name: geant4-09-03-ref-09    (25-June-2010)
    88                      Copyright : Geant4 Collaboration
    99                      Reference : NIM A 506 (2003), 250-303
     
    2626***** Table : Nb of materials = 5 *****
    2727
    28  Material:    Water     density:  1.000 g/cm3   RadL:  36.084 cm   Nucl.Int.Length:  75.424 cm   Imean:  75.000 eV
     28 Material:    Water     density:  1.000 g/cm3   RadL:  36.084 cm   Nucl.Int.Length:  75.520 cm   Imean:  75.000 eV
    2929   --->  Element: Hydrogen (H)   Z =  1.0   N =   1.0   A =   1.01 g/mole  ElmMassFraction:  11.19 %  ElmAbundance  66.67 %
    3030   --->  Element: Oxygen (O)   Z =  8.0   N =  16.0   A =  16.00 g/mole  ElmMassFraction:  88.81 %  ElmAbundance  33.33 %
    3131
    32  Material:      Air     density:  1.290 mg/cm3  RadL: 285.161 m    Nucl.Int.Length: 662.680 m    Imean:  85.703 eV   temperature: 273.15 K  pressure:   1.00 atm
     32 Material:      Air     density:  1.290 mg/cm3  RadL: 285.161 m    Nucl.Int.Length: 662.904 m    Imean:  85.703 eV   temperature: 273.15 K  pressure:   1.00 atm
    3333   --->  Element: Nitrogen (N)   Z =  7.0   N =  14.0   A =  14.01 g/mole  ElmMassFraction:  70.00 %  ElmAbundance  72.71 %
    3434   --->  Element: Oxygen (O)   Z =  8.0   N =  16.0   A =  16.00 g/mole  ElmMassFraction:  30.00 %  ElmAbundance  27.29 %
    3535
    36  Material: TechVacuum     density:  0.010 kg/m3   RadL:  36.786 km   Nucl.Int.Length:  85.486 km   Imean:  85.703 eV   temperature: 273.15 K  pressure:   0.02 atm
     36 Material: TechVacuum     density:  0.010 kg/m3   RadL:  36.786 km   Nucl.Int.Length:  85.515 km   Imean:  85.703 eV   temperature: 273.15 K  pressure:   0.02 atm
    3737   --->  Element: Nitrogen (N)   Z =  7.0   N =  14.0   A =  14.01 g/mole  ElmMassFraction:  70.00 %  ElmAbundance  72.71 %
    3838   --->  Element: Oxygen (O)   Z =  8.0   N =  16.0   A =  16.00 g/mole  ElmMassFraction:  30.00 %  ElmAbundance  27.29 %
    3939
    40  Material: Galactic     density:  0.000 kg/m3   RadL: 204322111.300 pc   Nucl.Int.Length: 113728944.943 pc   Imean:  19.200 eV   temperature:   2.73 K  pressure:   0.00 atm
     40 Material: Galactic     density:  0.000 kg/m3   RadL: 204322111.300 pc   Nucl.Int.Length: 114334693.470 pc   Imean:  19.200 eV   temperature:   2.73 K  pressure:   0.00 atm
    4141   --->  Element: Galactic ( )   Z =  1.0   N =   1.0   A =   1.01 g/mole  ElmMassFraction: 100.00 %  ElmAbundance 100.00 %
    4242
    43  Material: G4_WATER H_2O   density:  1.000 g/cm3   RadL:  36.083 cm   Nucl.Int.Length:  75.505 cm   Imean:  78.000 eV
     43 Material: G4_WATER H_2O   density:  1.000 g/cm3   RadL:  36.083 cm   Nucl.Int.Length:  75.517 cm   Imean:  78.000 eV
    4444   --->  Element: H (H)   Z =  1.0   N =   1.0   A =   1.01 g/mole
    4545   --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance:  99.99 %
     
    7373phot:   for  gamma    SubType= 12
    7474      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    75        PhotoElectric :     Emin=          0 eV         Emax=   10 TeV
     75       PhotoElectric :   Emin=        0 eV       Emax=         10 TeV
    7676
    7777compt:   for  gamma    SubType= 13
    7878      Lambda tables from 100 eV  to 10 TeV in 220 bins, spline: 1
    7979      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    80        Klein-Nishina :     Emin=          0 eV         Emax=   10 TeV
     80       Klein-Nishina :   Emin=        0 eV       Emax=         10 TeV
    8181
    8282conv:   for  gamma    SubType= 14
    8383      Lambda tables from 1.022 MeV to 10 TeV in 220 bins, spline: 1
    8484      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    85        Bethe-Heitler :     Emin=          0 eV         Emax=   10 TeV
     85        BetheHeitler :   Emin=        0 eV       Emax=         10 TeV
    8686
    8787Rayl:   for  gamma    SubType= 11
    8888      Lambda tables from 100 eV  to 10 TeV in 200 bins, spline: 1
    8989      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    90    LivermoreRayleigh :     Emin=          0 eV         Emax=   100 GeV
     90   LivermoreRayleigh :   Emin=        0 eV       Emax=        100 GeV
    9191
    9292msc:   for e-    SubType= 10
     
    9494      RangeFactor= 0.04, stepLimitType: 2, latDisplacement: 1, skin= 1, geomFactor= 2.5
    9595      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    96           UrbanMsc93 :     Emin=          0 eV         Emax=   10 TeV
     96          UrbanMsc93 :   Emin=        0 eV       Emax=         10 TeV
    9797
    9898eIoni:   for  e-    SubType= 2
     
    101101      finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    102102      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    103         MollerBhabha :     Emin=          0 eV         Emax=   10 TeV
     103        MollerBhabha :   Emin=        0 eV       Emax=         10 TeV
    104104
    105105eBrem:   for  e-    SubType= 3
     
    108108      LPM flag: 1 for E > 1 GeV
    109109      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    110                eBrem :     Emin=          0 eV         Emax=   1 GeV
    111             eBremRel :     Emin=          1 GeV        Emax=   10 TeV
     110               eBrem :   Emin=        0 eV       Emax=          1 GeV  AngularGenUrban
     111            eBremLPM :   Emin=        1 GeV      Emax=         10 TeV  AngularGenUrban
    112112
    113113eIoni:   for  e+    SubType= 2
     
    116116      finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    117117      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    118         MollerBhabha :     Emin=          0 eV         Emax=   10 TeV
     118        MollerBhabha :   Emin=        0 eV       Emax=         10 TeV
    119119
    120120eBrem:   for  e+    SubType= 3
     
    123123      LPM flag: 1 for E > 1 GeV
    124124      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    125                eBrem :     Emin=          0 eV         Emax=   1 GeV
    126             eBremRel :     Emin=          1 GeV        Emax=   10 TeV
     125               eBrem :   Emin=        0 eV       Emax=          1 GeV  AngularGenUrban
     126            eBremLPM :   Emin=        1 GeV      Emax=         10 TeV  AngularGenUrban
    127127
    128128annihil:   for  e+    SubType= 5
    129129      Lambda tables from 100 eV  to 10 TeV in 220 bins, spline: 1
    130130      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    131             eplus2gg :     Emin=          0 eV         Emax=   10 TeV
     131            eplus2gg :   Emin=        0 eV       Emax=         10 TeV
    132132
    133133msc:   for proton    SubType= 10
     
    135135      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
    136136      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    137           UrbanMsc90 :     Emin=          0 eV         Emax=   10 TeV
     137          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    138138
    139139hIoni:   for  proton    SubType= 2
     
    142142      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    143143      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    144                Bragg :     Emin=          0 eV         Emax=   2 MeV
    145           BetheBloch :     Emin=          2 MeV        Emax=   10 TeV
     144               Bragg :   Emin=        0 eV       Emax=          2 MeV
     145          BetheBloch :   Emin=        2 MeV      Emax=         10 TeV
    146146
    147147hBrems:   for  proton    SubType= 3
     
    149149      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    150150      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    151                hBrem :     Emin=          0 eV         Emax=   10 TeV
     151               hBrem :   Emin=        0 eV       Emax=         10 TeV
    152152
    153153hPairProd:   for  proton    SubType= 4
     
    155155      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    156156      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    157            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     157           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    158158
    159159msc:   for GenericIon    SubType= 10
    160160      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
    161161      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    162           UrbanMsc90 :     Emin=          0 eV         Emax=   10 TeV
     162          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    163163
    164164ionIoni:   for  GenericIon    SubType= 2
     
    166166      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    167167      finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
    168       Stopping Power data for 17 ion/material pairs, nuclearStopping: 1
    169       ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    170          ParamICRU73 :     Emin=          0 eV         Emax=   10 TeV
     168      Stopping Power data for 17 ion/material pairs 
     169      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
     170         ParamICRU73 :   Emin=        0 eV       Emax=         10 TeV
    171171
    172172nuclearStopping:   for  GenericIon    SubType= 1
    173173      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    174    ICRU49NucStopping :     Emin=          0 eV         Emax=   10 TeV
     174   ICRU49NucStopping :   Emin=        0 eV       Emax=         10 TeV
    175175
    176176nuclearStopping:   for  alpha    SubType= 1
    177177      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    178    ICRU49NucStopping :     Emin=          0 eV         Emax=   10 TeV
     178   ICRU49NucStopping :   Emin=        0 eV       Emax=         10 TeV
    179179
    180180hIoni:   for  anti_proton    SubType= 2
     
    183183      finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    184184      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    185             ICRU73QO :     Emin=          0 eV         Emax=   2 MeV
    186           BetheBloch :     Emin=          2 MeV        Emax=   10 TeV
     185            ICRU73QO :   Emin=        0 eV       Emax=          2 MeV
     186          BetheBloch :   Emin=        2 MeV      Emax=         10 TeV
     187
     188msc:   for kaon+    SubType= 10
     189      Lambda tables from 100 eV  to 10 TeV in 220 bins, spline: 1
     190      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
     191      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
     192          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    187193
    188194hIoni:   for  kaon+    SubType= 2
     
    191197      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    192198      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    193                Bragg :     Emin=          0 eV         Emax=   1.05231 MeV
    194           BetheBloch :     Emin=    1.05231 MeV        Emax=   10 TeV
     199               Bragg :   Emin=        0 eV       Emax=    1.05231 MeV
     200          BetheBloch :   Emin=  1.05231 MeV      Emax=         10 TeV
    195201
    196202hBrems:   for  kaon+    SubType= 3
     
    198204      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    199205      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    200                hBrem :     Emin=          0 eV         Emax=   10 TeV
     206               hBrem :   Emin=        0 eV       Emax=         10 TeV
    201207
    202208hPairProd:   for  kaon+    SubType= 4
     
    204210      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    205211      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    206            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     212           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    207213
    208214hIoni:   for  kaon-    SubType= 2
     
    211217      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    212218      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    213             ICRU73QO :     Emin=          0 eV         Emax=   1.05231 MeV
    214           BetheBloch :     Emin=    1.05231 MeV        Emax=   10 TeV
     219            ICRU73QO :   Emin=        0 eV       Emax=    1.05231 MeV
     220          BetheBloch :   Emin=  1.05231 MeV      Emax=         10 TeV
    215221
    216222hBrems:   for  kaon-    SubType= 3
     
    218224      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    219225      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    220                hBrem :     Emin=          0 eV         Emax=   10 TeV
     226               hBrem :   Emin=        0 eV       Emax=         10 TeV
    221227
    222228hPairProd:   for  kaon-    SubType= 4
     
    224230      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    225231      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    226            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     232           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    227233
    228234muMsc:   for mu+    SubType= 10
     
    230236      RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 11.4592
    231237      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    232         WentzelVIUni :     Emin=          0 eV         Emax=   10 TeV
     238        WentzelVIUni :   Emin=        0 eV       Emax=         10 TeV
    233239
    234240muIoni:   for  mu+    SubType= 2
     
    237243      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    238244      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    239                Bragg :     Emin=          0 eV         Emax=   200 keV
    240           BetheBloch :     Emin=        200 keV        Emax=   1 GeV
    241         MuBetheBloch :     Emin=          1 GeV        Emax=   10 TeV
     245               Bragg :   Emin=        0 eV       Emax=        200 keV
     246          BetheBloch :   Emin=      200 keV      Emax=          1 GeV
     247        MuBetheBloch :   Emin=        1 GeV      Emax=         10 TeV
    242248
    243249muBrems:   for  mu+    SubType= 3
     
    245251      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    246252      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    247               MuBrem :     Emin=          0 eV         Emax=   10 TeV
     253              MuBrem :   Emin=        0 eV       Emax=         10 TeV
    248254
    249255muPairProd:   for  mu+    SubType= 4
     
    251257      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    252258      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    253           muPairProd :     Emin=          0 eV         Emax=   10 TeV
     259          muPairProd :   Emin=        0 eV       Emax=         10 TeV
    254260
    255261CoulombScat:   for  mu+    SubType= 1
     
    257263      11.4592 < Theta(degree) < 180, Eth(MeV)= 10; pLimit(GeV^1)= 0.139531
    258264      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    259   eCoulombScattering :     Emin=          0 eV         Emax=   10 TeV
     265  eCoulombScattering :   Emin=        0 eV       Emax=         10 TeV
    260266
    261267muIoni:   for  mu-    SubType= 2
     
    264270      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    265271      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    266             ICRU73QO :     Emin=          0 eV         Emax=   200 keV
    267           BetheBloch :     Emin=        200 keV        Emax=   1 GeV
    268         MuBetheBloch :     Emin=          1 GeV        Emax=   10 TeV
     272            ICRU73QO :   Emin=        0 eV       Emax=        200 keV
     273          BetheBloch :   Emin=      200 keV      Emax=          1 GeV
     274        MuBetheBloch :   Emin=        1 GeV      Emax=         10 TeV
    269275
    270276muBrems:   for  mu-    SubType= 3
     
    272278      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    273279      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    274               MuBrem :     Emin=          0 eV         Emax=   10 TeV
     280              MuBrem :   Emin=        0 eV       Emax=         10 TeV
    275281
    276282muPairProd:   for  mu-    SubType= 4
     
    278284      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    279285      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    280           muPairProd :     Emin=          0 eV         Emax=   10 TeV
     286          muPairProd :   Emin=        0 eV       Emax=         10 TeV
    281287
    282288CoulombScat:   for  mu-    SubType= 1
     
    284290      11.4592 < Theta(degree) < 180, Eth(MeV)= 10; pLimit(GeV^1)= 0.139531
    285291      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    286   eCoulombScattering :     Emin=          0 eV         Emax=   10 TeV
     292  eCoulombScattering :   Emin=        0 eV       Emax=         10 TeV
    287293
    288294hIoni:   for  pi+    SubType= 2
     
    291297      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    292298      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    293                Bragg :     Emin=          0 eV         Emax=   297.504 keV
    294           BetheBloch :     Emin=    297.504 keV        Emax=   10 TeV
     299               Bragg :   Emin=        0 eV       Emax=    297.505 keV
     300          BetheBloch :   Emin=  297.505 keV      Emax=         10 TeV
    295301
    296302hBrems:   for  pi+    SubType= 3
     
    298304      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    299305      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    300                hBrem :     Emin=          0 eV         Emax=   10 TeV
     306               hBrem :   Emin=        0 eV       Emax=         10 TeV
    301307
    302308hPairProd:   for  pi+    SubType= 4
     
    304310      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    305311      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    306            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     312           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    307313
    308314msc:   for pi-    SubType= 10
     
    310316      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
    311317      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    312           UrbanMsc90 :     Emin=          0 eV         Emax=   10 TeV
     318          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    313319
    314320hIoni:   for  pi-    SubType= 2
     
    317323      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    318324      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    319             ICRU73QO :     Emin=          0 eV         Emax=   297.504 keV
    320           BetheBloch :     Emin=    297.504 keV        Emax=   10 TeV
     325            ICRU73QO :   Emin=        0 eV       Emax=    297.505 keV
     326          BetheBloch :   Emin=  297.505 keV      Emax=         10 TeV
    321327
    322328hBrems:   for  pi-    SubType= 3
     
    324330      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    325331      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    326                hBrem :     Emin=          0 eV         Emax=   10 TeV
     332               hBrem :   Emin=        0 eV       Emax=         10 TeV
    327333
    328334hPairProd:   for  pi-    SubType= 4
     
    330336      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    331337      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    332            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     338           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    333339
    334340========= Table of registered couples ==============================
     
    356362 Current couple of seeds = 9876, 54321
    357363----------------------------------------
     364----> SetHisto 1: Edep (MeV/mm) along absorber  (mm);  200 bins from 0 mm to 200 mm
    358365Start Run processing.
    359366
     
    380387Run Summary
    381388  Number of events processed : 10000
    382   User=14.67s Real=18.57s Sys=0.29s
     389  User=13.05s Real=13.35s Sys=0.29s
    383390
    384391 The run consists of 10000 proton of 160 MeV through 20 cm  of G4_WATER (density: 1 g/cm3 )
    385392
    386  Projected Range= 17.7674 cm    rms= 3.10465 mm
    387  Mean number of primary steps = 188.615
     393 Projected Range= 17.8371 cm    rms= 1.88878 mm
     394 Mean number of primary steps = 189.258
    388395 Total energy deposit= 160 MeV
    389  NIEL energy deposit = 0 eV
     396 niel energy deposit = 0 eV
    390397
    391398---------------------------------------------------------
    392399 Cumulated Doses :      Edep            Edep/Ebeam      Dose
    393  tally 0:               4.52743 GeV     0.282964 %      9.06718e-05 Gy
    394  tally 1:               4.95286 GeV     0.309554 %      9.91919e-05 Gy
    395  tally 2:               3.29423 GeV     0.205889 %      6.59742e-05 Gy
    396  tally 3:               1.91614 GeV     0.119758 %      3.83748e-05 Gy
     400 tally 0:               4.5063 GeV      0.281644 %      9.02486e-05 Gy
     401 tally 1:               4.89844 GeV     0.306152 %      9.8102e-05 Gy
     402 tally 2:               3.26845 GeV     0.204278 %      6.5458e-05 Gy
     403 tally 3:               1.86282 GeV     0.116426 %      3.73071e-05 Gy
    397404
    398405---------------------------------------------------------
     
    401408--------- Ranecu engine status ---------
    402409 Initial seed (index) = 0
    403  Current couple of seeds = 567759070, 309223076
     410 Current couple of seeds = 522942939, 986585145
    404411----------------------------------------
    405412/testem/stepMax 100 mm
     
    431438--------- Ranecu engine status ---------
    432439 Initial seed (index) = 0
    433  Current couple of seeds = 567759070, 309223076
     440 Current couple of seeds = 522942939, 986585145
    434441----------------------------------------
     442----> SetHisto 1: Edep (MeV/mm) along absorber  (mm);  100 bins from 0 mm to 200 mm
    435443Start Run processing.
    436444
     
    439447Run Summary
    440448  Number of events processed : 1000
    441   User=5.24s Real=5.33s Sys=0.05s
     449  User=5.13s Real=5.6s Sys=0.03s
    442450
    443451 The run consists of 1000 C12[0.0] of 3.5 GeV through 20 cm  of G4_WATER (density: 1 g/cm3 )
    444452
    445  Projected Range= 16.4851 cm    rms= 470.241 um
    446  Mean number of primary steps = 127.035
     453 Projected Range= 16.4882 cm    rms= 490.917 um
     454 Mean number of primary steps = 126.733
    447455 Total energy deposit= 3.49997 GeV
    448  NIEL energy deposit = 1.33982 MeV
     456 niel energy deposit = 1.33959 MeV
    449457
    450458---------------------------------------------------------
    451459 Cumulated Doses :      Edep            Edep/Ebeam      Dose
    452  tally 0:               11.0602 GeV     0.316005 %      0.000221504 Gy
    453  tally 1:               12.3113 GeV     0.351751 %      0.000246561 Gy
    454  tally 2:               15.5997 GeV     0.445707 %      0.000312419 Gy
    455  tally 3:               23.2103 GeV     0.663151 %      0.000464837 Gy
     460 tally 0:               11.2827 GeV     0.322362 %      0.000225961 Gy
     461 tally 1:               12.4986 GeV     0.357102 %      0.000250311 Gy
     462 tally 2:               15.6539 GeV     0.447255 %      0.000313504 Gy
     463 tally 3:               23.0055 GeV     0.6573 %        0.000460736 Gy
    456464
    457465---------------------------------------------------------
     
    460468--------- Ranecu engine status ---------
    461469 Initial seed (index) = 0
    462  Current couple of seeds = 289091108, 1884059862
     470 Current couple of seeds = 270731854, 1652912222
    463471----------------------------------------
    464472/testem/det/setMat G4_Cu
     
    468476***** Table : Nb of materials = 6 *****
    469477
    470  Material:    Water     density:  1.000 g/cm3   RadL:  36.084 cm   Nucl.Int.Length:  75.424 cm   Imean:  75.000 eV
     478 Material:    Water     density:  1.000 g/cm3   RadL:  36.084 cm   Nucl.Int.Length:  75.520 cm   Imean:  75.000 eV
    471479   --->  Element: Hydrogen (H)   Z =  1.0   N =   1.0   A =   1.01 g/mole  ElmMassFraction:  11.19 %  ElmAbundance  66.67 %
    472480   --->  Element: Oxygen (O)   Z =  8.0   N =  16.0   A =  16.00 g/mole  ElmMassFraction:  88.81 %  ElmAbundance  33.33 %
    473481
    474  Material:      Air     density:  1.290 mg/cm3  RadL: 285.161 m    Nucl.Int.Length: 662.680 m    Imean:  85.703 eV   temperature: 273.15 K  pressure:   1.00 atm
     482 Material:      Air     density:  1.290 mg/cm3  RadL: 285.161 m    Nucl.Int.Length: 662.904 m    Imean:  85.703 eV   temperature: 273.15 K  pressure:   1.00 atm
    475483   --->  Element: Nitrogen (N)   Z =  7.0   N =  14.0   A =  14.01 g/mole  ElmMassFraction:  70.00 %  ElmAbundance  72.71 %
    476484   --->  Element: Oxygen (O)   Z =  8.0   N =  16.0   A =  16.00 g/mole  ElmMassFraction:  30.00 %  ElmAbundance  27.29 %
    477485
    478  Material: TechVacuum     density:  0.010 kg/m3   RadL:  36.786 km   Nucl.Int.Length:  85.486 km   Imean:  85.703 eV   temperature: 273.15 K  pressure:   0.02 atm
     486 Material: TechVacuum     density:  0.010 kg/m3   RadL:  36.786 km   Nucl.Int.Length:  85.515 km   Imean:  85.703 eV   temperature: 273.15 K  pressure:   0.02 atm
    479487   --->  Element: Nitrogen (N)   Z =  7.0   N =  14.0   A =  14.01 g/mole  ElmMassFraction:  70.00 %  ElmAbundance  72.71 %
    480488   --->  Element: Oxygen (O)   Z =  8.0   N =  16.0   A =  16.00 g/mole  ElmMassFraction:  30.00 %  ElmAbundance  27.29 %
    481489
    482  Material: Galactic     density:  0.000 kg/m3   RadL: 204322111.300 pc   Nucl.Int.Length: 113728944.943 pc   Imean:  19.200 eV   temperature:   2.73 K  pressure:   0.00 atm
     490 Material: Galactic     density:  0.000 kg/m3   RadL: 204322111.300 pc   Nucl.Int.Length: 114334693.470 pc   Imean:  19.200 eV   temperature:   2.73 K  pressure:   0.00 atm
    483491   --->  Element: Galactic ( )   Z =  1.0   N =   1.0   A =   1.01 g/mole  ElmMassFraction: 100.00 %  ElmAbundance 100.00 %
    484492
    485  Material: G4_WATER H_2O   density:  1.000 g/cm3   RadL:  36.083 cm   Nucl.Int.Length:  75.505 cm   Imean:  78.000 eV
     493 Material: G4_WATER H_2O   density:  1.000 g/cm3   RadL:  36.083 cm   Nucl.Int.Length:  75.517 cm   Imean:  78.000 eV
    486494   --->  Element: H (H)   Z =  1.0   N =   1.0   A =   1.01 g/mole
    487495   --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance:  99.99 %
     
    492500   --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:   0.20 %  ElmMassFraction:  88.81 %  ElmAbundance  33.33 %
    493501
    494  Material:    G4_Cu     density:  8.960 g/cm3   RadL:   1.436 cm   Nucl.Int.Length:  15.576 cm   Imean: 322.000 eV
     502 Material:    G4_Cu     density:  8.960 g/cm3   RadL:   1.436 cm   Nucl.Int.Length:  15.514 cm   Imean: 322.000 eV
    495503   --->  Element: Cu (Cu)   Z = 29.0   N =  63.6   A =  63.55 g/mole
    496504   --->  Isotope:  Cu63   Z = 29   N =  63   A =  62.93 g/mole   abundance:  69.17 %
     
    516524phot:   for  gamma    SubType= 12
    517525      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    518        PhotoElectric :     Emin=          0 eV         Emax=   10 TeV
     526       PhotoElectric :   Emin=        0 eV       Emax=         10 TeV
    519527
    520528compt:   for  gamma    SubType= 13
    521529      Lambda tables from 100 eV  to 10 TeV in 220 bins, spline: 1
    522530      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    523        Klein-Nishina :     Emin=          0 eV         Emax=   10 TeV
     531       Klein-Nishina :   Emin=        0 eV       Emax=         10 TeV
    524532
    525533conv:   for  gamma    SubType= 14
    526534      Lambda tables from 1.022 MeV to 10 TeV in 220 bins, spline: 1
    527535      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    528        Bethe-Heitler :     Emin=          0 eV         Emax=   10 TeV
     536        BetheHeitler :   Emin=        0 eV       Emax=         10 TeV
    529537
    530538Rayl:   for  gamma    SubType= 11
    531539      Lambda tables from 100 eV  to 10 TeV in 200 bins, spline: 1
    532540      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    533    LivermoreRayleigh :     Emin=          0 eV         Emax=   100 GeV
     541   LivermoreRayleigh :   Emin=        0 eV       Emax=        100 GeV
    534542
    535543msc:   for e-    SubType= 10
     
    537545      RangeFactor= 0.04, stepLimitType: 2, latDisplacement: 1, skin= 1, geomFactor= 2.5
    538546      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    539           UrbanMsc93 :     Emin=          0 eV         Emax=   10 TeV
     547          UrbanMsc93 :   Emin=        0 eV       Emax=         10 TeV
    540548
    541549eIoni:   for  e-    SubType= 2
     
    544552      finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    545553      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    546         MollerBhabha :     Emin=          0 eV         Emax=   10 TeV
     554        MollerBhabha :   Emin=        0 eV       Emax=         10 TeV
    547555
    548556eBrem:   for  e-    SubType= 3
     
    551559      LPM flag: 1 for E > 1 GeV
    552560      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    553                eBrem :     Emin=          0 eV         Emax=   1 GeV
    554             eBremRel :     Emin=          1 GeV        Emax=   10 TeV
     561               eBrem :   Emin=        0 eV       Emax=          1 GeV  AngularGenUrban
     562            eBremLPM :   Emin=        1 GeV      Emax=         10 TeV  AngularGenUrban
    555563
    556564eIoni:   for  e+    SubType= 2
     
    559567      finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    560568      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    561         MollerBhabha :     Emin=          0 eV         Emax=   10 TeV
     569        MollerBhabha :   Emin=        0 eV       Emax=         10 TeV
    562570
    563571eBrem:   for  e+    SubType= 3
     
    566574      LPM flag: 1 for E > 1 GeV
    567575      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    568                eBrem :     Emin=          0 eV         Emax=   1 GeV
    569             eBremRel :     Emin=          1 GeV        Emax=   10 TeV
     576               eBrem :   Emin=        0 eV       Emax=          1 GeV  AngularGenUrban
     577            eBremLPM :   Emin=        1 GeV      Emax=         10 TeV  AngularGenUrban
    570578
    571579annihil:   for  e+    SubType= 5
    572580      Lambda tables from 100 eV  to 10 TeV in 220 bins, spline: 1
    573581      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    574             eplus2gg :     Emin=          0 eV         Emax=   10 TeV
     582            eplus2gg :   Emin=        0 eV       Emax=         10 TeV
    575583
    576584msc:   for proton    SubType= 10
     
    578586      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
    579587      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    580           UrbanMsc90 :     Emin=          0 eV         Emax=   10 TeV
     588          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    581589
    582590hIoni:   for  proton    SubType= 2
     
    585593      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    586594      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    587                Bragg :     Emin=          0 eV         Emax=   2 MeV
    588           BetheBloch :     Emin=          2 MeV        Emax=   10 TeV
     595               Bragg :   Emin=        0 eV       Emax=          2 MeV
     596          BetheBloch :   Emin=        2 MeV      Emax=         10 TeV
    589597
    590598hBrems:   for  proton    SubType= 3
     
    592600      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    593601      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    594                hBrem :     Emin=          0 eV         Emax=   10 TeV
     602               hBrem :   Emin=        0 eV       Emax=         10 TeV
    595603
    596604hPairProd:   for  proton    SubType= 4
     
    598606      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    599607      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    600            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     608           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    601609
    602610msc:   for GenericIon    SubType= 10
    603611      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
    604612      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    605           UrbanMsc90 :     Emin=          0 eV         Emax=   10 TeV
     613          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    606614
    607615ionIoni:   for  GenericIon    SubType= 2
     
    609617      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    610618      finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
    611       Stopping Power data for 17 ion/material pairs, nuclearStopping: 1
    612       ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    613          ParamICRU73 :     Emin=          0 eV         Emax=   10 TeV
     619      Stopping Power data for 17 ion/material pairs 
     620      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
     621         ParamICRU73 :   Emin=        0 eV       Emax=         10 TeV
    614622
    615623nuclearStopping:   for  GenericIon    SubType= 1
    616624      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    617    ICRU49NucStopping :     Emin=          0 eV         Emax=   10 TeV
     625   ICRU49NucStopping :   Emin=        0 eV       Emax=         10 TeV
    618626
    619627nuclearStopping:   for  alpha    SubType= 1
    620628      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    621    ICRU49NucStopping :     Emin=          0 eV         Emax=   10 TeV
     629   ICRU49NucStopping :   Emin=        0 eV       Emax=         10 TeV
    622630
    623631hIoni:   for  anti_proton    SubType= 2
     
    626634      finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    627635      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    628             ICRU73QO :     Emin=          0 eV         Emax=   2 MeV
    629           BetheBloch :     Emin=          2 MeV        Emax=   10 TeV
     636            ICRU73QO :   Emin=        0 eV       Emax=          2 MeV
     637          BetheBloch :   Emin=        2 MeV      Emax=         10 TeV
     638
     639msc:   for kaon+    SubType= 10
     640      Lambda tables from 100 eV  to 10 TeV in 220 bins, spline: 1
     641      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
     642      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
     643          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    630644
    631645hIoni:   for  kaon+    SubType= 2
     
    634648      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    635649      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    636                Bragg :     Emin=          0 eV         Emax=   1.05231 MeV
    637           BetheBloch :     Emin=    1.05231 MeV        Emax=   10 TeV
     650               Bragg :   Emin=        0 eV       Emax=    1.05231 MeV
     651          BetheBloch :   Emin=  1.05231 MeV      Emax=         10 TeV
    638652
    639653hBrems:   for  kaon+    SubType= 3
     
    641655      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    642656      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    643                hBrem :     Emin=          0 eV         Emax=   10 TeV
     657               hBrem :   Emin=        0 eV       Emax=         10 TeV
    644658
    645659hPairProd:   for  kaon+    SubType= 4
     
    647661      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    648662      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    649            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     663           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    650664
    651665hIoni:   for  kaon-    SubType= 2
     
    654668      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    655669      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    656             ICRU73QO :     Emin=          0 eV         Emax=   1.05231 MeV
    657           BetheBloch :     Emin=    1.05231 MeV        Emax=   10 TeV
     670            ICRU73QO :   Emin=        0 eV       Emax=    1.05231 MeV
     671          BetheBloch :   Emin=  1.05231 MeV      Emax=         10 TeV
    658672
    659673hBrems:   for  kaon-    SubType= 3
     
    661675      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    662676      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    663                hBrem :     Emin=          0 eV         Emax=   10 TeV
     677               hBrem :   Emin=        0 eV       Emax=         10 TeV
    664678
    665679hPairProd:   for  kaon-    SubType= 4
     
    667681      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    668682      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    669            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     683           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    670684
    671685muMsc:   for mu+    SubType= 10
     
    673687      RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 11.4592
    674688      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    675         WentzelVIUni :     Emin=          0 eV         Emax=   10 TeV
     689        WentzelVIUni :   Emin=        0 eV       Emax=         10 TeV
    676690
    677691muIoni:   for  mu+    SubType= 2
     
    680694      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    681695      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    682                Bragg :     Emin=          0 eV         Emax=   200 keV
    683           BetheBloch :     Emin=        200 keV        Emax=   1 GeV
    684         MuBetheBloch :     Emin=          1 GeV        Emax=   10 TeV
     696               Bragg :   Emin=        0 eV       Emax=        200 keV
     697          BetheBloch :   Emin=      200 keV      Emax=          1 GeV
     698        MuBetheBloch :   Emin=        1 GeV      Emax=         10 TeV
    685699
    686700muBrems:   for  mu+    SubType= 3
     
    688702      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    689703      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    690               MuBrem :     Emin=          0 eV         Emax=   10 TeV
     704              MuBrem :   Emin=        0 eV       Emax=         10 TeV
    691705
    692706muPairProd:   for  mu+    SubType= 4
     
    694708      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    695709      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    696           muPairProd :     Emin=          0 eV         Emax=   10 TeV
     710          muPairProd :   Emin=        0 eV       Emax=         10 TeV
    697711
    698712CoulombScat:   for  mu+    SubType= 1
     
    700714      11.4592 < Theta(degree) < 180, Eth(MeV)= 10; pLimit(GeV^1)= 0.139531
    701715      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    702   eCoulombScattering :     Emin=          0 eV         Emax=   10 TeV
     716  eCoulombScattering :   Emin=        0 eV       Emax=         10 TeV
    703717
    704718muIoni:   for  mu-    SubType= 2
     
    707721      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    708722      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    709             ICRU73QO :     Emin=          0 eV         Emax=   200 keV
    710           BetheBloch :     Emin=        200 keV        Emax=   1 GeV
    711         MuBetheBloch :     Emin=          1 GeV        Emax=   10 TeV
     723            ICRU73QO :   Emin=        0 eV       Emax=        200 keV
     724          BetheBloch :   Emin=      200 keV      Emax=          1 GeV
     725        MuBetheBloch :   Emin=        1 GeV      Emax=         10 TeV
    712726
    713727muBrems:   for  mu-    SubType= 3
     
    715729      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    716730      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    717               MuBrem :     Emin=          0 eV         Emax=   10 TeV
     731              MuBrem :   Emin=        0 eV       Emax=         10 TeV
    718732
    719733muPairProd:   for  mu-    SubType= 4
     
    721735      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    722736      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    723           muPairProd :     Emin=          0 eV         Emax=   10 TeV
     737          muPairProd :   Emin=        0 eV       Emax=         10 TeV
    724738
    725739CoulombScat:   for  mu-    SubType= 1
     
    727741      11.4592 < Theta(degree) < 180, Eth(MeV)= 10; pLimit(GeV^1)= 0.139531
    728742      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    729   eCoulombScattering :     Emin=          0 eV         Emax=   10 TeV
     743  eCoulombScattering :   Emin=        0 eV       Emax=         10 TeV
    730744
    731745hIoni:   for  pi+    SubType= 2
     
    734748      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    735749      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    736                Bragg :     Emin=          0 eV         Emax=   297.504 keV
    737           BetheBloch :     Emin=    297.504 keV        Emax=   10 TeV
     750               Bragg :   Emin=        0 eV       Emax=    297.505 keV
     751          BetheBloch :   Emin=  297.505 keV      Emax=         10 TeV
    738752
    739753hBrems:   for  pi+    SubType= 3
     
    741755      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    742756      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    743                hBrem :     Emin=          0 eV         Emax=   10 TeV
     757               hBrem :   Emin=        0 eV       Emax=         10 TeV
    744758
    745759hPairProd:   for  pi+    SubType= 4
     
    747761      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    748762      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    749            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     763           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    750764
    751765msc:   for pi-    SubType= 10
     
    753767      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
    754768      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    755           UrbanMsc90 :     Emin=          0 eV         Emax=   10 TeV
     769          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    756770
    757771hIoni:   for  pi-    SubType= 2
     
    760774      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    761775      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    762             ICRU73QO :     Emin=          0 eV         Emax=   297.504 keV
    763           BetheBloch :     Emin=    297.504 keV        Emax=   10 TeV
     776            ICRU73QO :   Emin=        0 eV       Emax=    297.505 keV
     777          BetheBloch :   Emin=  297.505 keV      Emax=         10 TeV
    764778
    765779hBrems:   for  pi-    SubType= 3
     
    767781      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    768782      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    769                hBrem :     Emin=          0 eV         Emax=   10 TeV
     783               hBrem :   Emin=        0 eV       Emax=         10 TeV
    770784
    771785hPairProd:   for  pi-    SubType= 4
     
    773787      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    774788      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    775            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     789           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    776790
    777791========= Table of registered couples ==============================
     
    802816--------- Ranecu engine status ---------
    803817 Initial seed (index) = 0
    804  Current couple of seeds = 289091108, 1884059862
     818 Current couple of seeds = 270731854, 1652912222
    805819----------------------------------------
     820----> SetHisto 1: Edep (MeV/mm) along absorber  (mm);  100 bins from 0 mm to 200 mm
    806821Start Run processing.
    807822
     
    810825Run Summary
    811826  Number of events processed : 1000
    812   User=5.63s Real=5.69s Sys=0.03s
     827  User=4.73s Real=4.75s Sys=0.03s
    813828
    814829 The run consists of 1000 kaon+ of 100 MeV through 20 cm  of G4_Cu (density: 8.96 g/cm3 )
    815830
    816  Projected Range= 2.11349 cm    rms= 1.77452 mm
    817  Mean number of primary steps = 19.989
    818  Total energy deposit= 284.244 MeV
    819  NIEL energy deposit = 0 eV
     831 Projected Range= 2.1222 cm    rms= 1.6077 mm
     832 Mean number of primary steps = 19.998
     833 Total energy deposit= 282.992 MeV
     834 niel energy deposit = 0 eV
    820835
    821836---------------------------------------------------------
    822837 Cumulated Doses :      Edep            Edep/Ebeam      Dose
    823  tally 0:               2.51645 GeV     2.51645 %       5.62471e-06 Gy
    824  tally 1:               32.5865 keV     3.25865e-05 %   7.28366e-11 Gy
    825  tally 2:               0 eV    0 %     0 Gy
     838 tally 0:               2.49046 GeV     2.49046 %       5.56662e-06 Gy
     839 tally 1:               5.64061 MeV     0.00564061 %    1.26078e-08 Gy
     840 tally 2:               3.91957 MeV     0.00391957 %    8.76095e-09 Gy
    826841 tally 3:               0 eV    0 %     0 Gy
    827842
     
    831846--------- Ranecu engine status ---------
    832847 Initial seed (index) = 0
    833  Current couple of seeds = 1968598092, 1623671030
     848 Current couple of seeds = 885517185, 2109349039
    834849----------------------------------------
    835850/testem/det/setMat TechVacuum
     
    839854***** Table : Nb of materials = 6 *****
    840855
    841  Material:    Water     density:  1.000 g/cm3   RadL:  36.084 cm   Nucl.Int.Length:  75.424 cm   Imean:  75.000 eV
     856 Material:    Water     density:  1.000 g/cm3   RadL:  36.084 cm   Nucl.Int.Length:  75.520 cm   Imean:  75.000 eV
    842857   --->  Element: Hydrogen (H)   Z =  1.0   N =   1.0   A =   1.01 g/mole  ElmMassFraction:  11.19 %  ElmAbundance  66.67 %
    843858   --->  Element: Oxygen (O)   Z =  8.0   N =  16.0   A =  16.00 g/mole  ElmMassFraction:  88.81 %  ElmAbundance  33.33 %
    844859
    845  Material:      Air     density:  1.290 mg/cm3  RadL: 285.161 m    Nucl.Int.Length: 662.680 m    Imean:  85.703 eV   temperature: 273.15 K  pressure:   1.00 atm
     860 Material:      Air     density:  1.290 mg/cm3  RadL: 285.161 m    Nucl.Int.Length: 662.904 m    Imean:  85.703 eV   temperature: 273.15 K  pressure:   1.00 atm
    846861   --->  Element: Nitrogen (N)   Z =  7.0   N =  14.0   A =  14.01 g/mole  ElmMassFraction:  70.00 %  ElmAbundance  72.71 %
    847862   --->  Element: Oxygen (O)   Z =  8.0   N =  16.0   A =  16.00 g/mole  ElmMassFraction:  30.00 %  ElmAbundance  27.29 %
    848863
    849  Material: TechVacuum     density:  0.010 kg/m3   RadL:  36.786 km   Nucl.Int.Length:  85.486 km   Imean:  85.703 eV   temperature: 273.15 K  pressure:   0.02 atm
     864 Material: TechVacuum     density:  0.010 kg/m3   RadL:  36.786 km   Nucl.Int.Length:  85.515 km   Imean:  85.703 eV   temperature: 273.15 K  pressure:   0.02 atm
    850865   --->  Element: Nitrogen (N)   Z =  7.0   N =  14.0   A =  14.01 g/mole  ElmMassFraction:  70.00 %  ElmAbundance  72.71 %
    851866   --->  Element: Oxygen (O)   Z =  8.0   N =  16.0   A =  16.00 g/mole  ElmMassFraction:  30.00 %  ElmAbundance  27.29 %
    852867
    853  Material: Galactic     density:  0.000 kg/m3   RadL: 204322111.300 pc   Nucl.Int.Length: 113728944.943 pc   Imean:  19.200 eV   temperature:   2.73 K  pressure:   0.00 atm
     868 Material: Galactic     density:  0.000 kg/m3   RadL: 204322111.300 pc   Nucl.Int.Length: 114334693.470 pc   Imean:  19.200 eV   temperature:   2.73 K  pressure:   0.00 atm
    854869   --->  Element: Galactic ( )   Z =  1.0   N =   1.0   A =   1.01 g/mole  ElmMassFraction: 100.00 %  ElmAbundance 100.00 %
    855870
    856  Material: G4_WATER H_2O   density:  1.000 g/cm3   RadL:  36.083 cm   Nucl.Int.Length:  75.505 cm   Imean:  78.000 eV
     871 Material: G4_WATER H_2O   density:  1.000 g/cm3   RadL:  36.083 cm   Nucl.Int.Length:  75.517 cm   Imean:  78.000 eV
    857872   --->  Element: H (H)   Z =  1.0   N =   1.0   A =   1.01 g/mole
    858873   --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance:  99.99 %
     
    863878   --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:   0.20 %  ElmMassFraction:  88.81 %  ElmAbundance  33.33 %
    864879
    865  Material:    G4_Cu     density:  8.960 g/cm3   RadL:   1.436 cm   Nucl.Int.Length:  15.576 cm   Imean: 322.000 eV
     880 Material:    G4_Cu     density:  8.960 g/cm3   RadL:   1.436 cm   Nucl.Int.Length:  15.514 cm   Imean: 322.000 eV
    866881   --->  Element: Cu (Cu)   Z = 29.0   N =  63.6   A =  63.55 g/mole
    867882   --->  Isotope:  Cu63   Z = 29   N =  63   A =  62.93 g/mole   abundance:  69.17 %
     
    887902phot:   for  gamma    SubType= 12
    888903      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    889        PhotoElectric :     Emin=          0 eV         Emax=   10 TeV
     904       PhotoElectric :   Emin=        0 eV       Emax=         10 TeV
    890905
    891906compt:   for  gamma    SubType= 13
    892907      Lambda tables from 100 eV  to 10 TeV in 220 bins, spline: 1
    893908      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    894        Klein-Nishina :     Emin=          0 eV         Emax=   10 TeV
     909       Klein-Nishina :   Emin=        0 eV       Emax=         10 TeV
    895910
    896911conv:   for  gamma    SubType= 14
    897912      Lambda tables from 1.022 MeV to 10 TeV in 220 bins, spline: 1
    898913      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    899        Bethe-Heitler :     Emin=          0 eV         Emax=   10 TeV
     914        BetheHeitler :   Emin=        0 eV       Emax=         10 TeV
    900915
    901916Rayl:   for  gamma    SubType= 11
    902917      Lambda tables from 100 eV  to 10 TeV in 200 bins, spline: 1
    903918      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    904    LivermoreRayleigh :     Emin=          0 eV         Emax=   100 GeV
     919   LivermoreRayleigh :   Emin=        0 eV       Emax=        100 GeV
    905920
    906921msc:   for e-    SubType= 10
     
    908923      RangeFactor= 0.04, stepLimitType: 2, latDisplacement: 1, skin= 1, geomFactor= 2.5
    909924      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    910           UrbanMsc93 :     Emin=          0 eV         Emax=   10 TeV
     925          UrbanMsc93 :   Emin=        0 eV       Emax=         10 TeV
    911926
    912927eIoni:   for  e-    SubType= 2
     
    915930      finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    916931      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    917         MollerBhabha :     Emin=          0 eV         Emax=   10 TeV
     932        MollerBhabha :   Emin=        0 eV       Emax=         10 TeV
    918933
    919934eBrem:   for  e-    SubType= 3
     
    922937      LPM flag: 1 for E > 1 GeV
    923938      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    924                eBrem :     Emin=          0 eV         Emax=   1 GeV
    925             eBremRel :     Emin=          1 GeV        Emax=   10 TeV
     939               eBrem :   Emin=        0 eV       Emax=          1 GeV  AngularGenUrban
     940            eBremLPM :   Emin=        1 GeV      Emax=         10 TeV  AngularGenUrban
    926941
    927942eIoni:   for  e+    SubType= 2
     
    930945      finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    931946      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    932         MollerBhabha :     Emin=          0 eV         Emax=   10 TeV
     947        MollerBhabha :   Emin=        0 eV       Emax=         10 TeV
    933948
    934949eBrem:   for  e+    SubType= 3
     
    937952      LPM flag: 1 for E > 1 GeV
    938953      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    939                eBrem :     Emin=          0 eV         Emax=   1 GeV
    940             eBremRel :     Emin=          1 GeV        Emax=   10 TeV
     954               eBrem :   Emin=        0 eV       Emax=          1 GeV  AngularGenUrban
     955            eBremLPM :   Emin=        1 GeV      Emax=         10 TeV  AngularGenUrban
    941956
    942957annihil:   for  e+    SubType= 5
    943958      Lambda tables from 100 eV  to 10 TeV in 220 bins, spline: 1
    944959      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    945             eplus2gg :     Emin=          0 eV         Emax=   10 TeV
     960            eplus2gg :   Emin=        0 eV       Emax=         10 TeV
    946961
    947962msc:   for proton    SubType= 10
     
    949964      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
    950965      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    951           UrbanMsc90 :     Emin=          0 eV         Emax=   10 TeV
     966          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    952967
    953968hIoni:   for  proton    SubType= 2
     
    956971      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    957972      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    958                Bragg :     Emin=          0 eV         Emax=   2 MeV
    959           BetheBloch :     Emin=          2 MeV        Emax=   10 TeV
     973               Bragg :   Emin=        0 eV       Emax=          2 MeV
     974          BetheBloch :   Emin=        2 MeV      Emax=         10 TeV
    960975
    961976hBrems:   for  proton    SubType= 3
     
    963978      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    964979      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    965                hBrem :     Emin=          0 eV         Emax=   10 TeV
     980               hBrem :   Emin=        0 eV       Emax=         10 TeV
    966981
    967982hPairProd:   for  proton    SubType= 4
     
    969984      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    970985      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    971            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     986           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    972987
    973988msc:   for GenericIon    SubType= 10
    974989      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
    975990      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    976           UrbanMsc90 :     Emin=          0 eV         Emax=   10 TeV
     991          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    977992
    978993ionIoni:   for  GenericIon    SubType= 2
     
    980995      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    981996      finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
    982       Stopping Power data for 17 ion/material pairs, nuclearStopping: 1
    983       ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    984          ParamICRU73 :     Emin=          0 eV         Emax=   10 TeV
     997      Stopping Power data for 17 ion/material pairs 
     998      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
     999         ParamICRU73 :   Emin=        0 eV       Emax=         10 TeV
    9851000
    9861001nuclearStopping:   for  GenericIon    SubType= 1
    9871002      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    988    ICRU49NucStopping :     Emin=          0 eV         Emax=   10 TeV
     1003   ICRU49NucStopping :   Emin=        0 eV       Emax=         10 TeV
    9891004
    9901005nuclearStopping:   for  alpha    SubType= 1
    9911006      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    992    ICRU49NucStopping :     Emin=          0 eV         Emax=   10 TeV
     1007   ICRU49NucStopping :   Emin=        0 eV       Emax=         10 TeV
    9931008
    9941009hIoni:   for  anti_proton    SubType= 2
     
    9971012      finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    9981013      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    999             ICRU73QO :     Emin=          0 eV         Emax=   2 MeV
    1000           BetheBloch :     Emin=          2 MeV        Emax=   10 TeV
     1014            ICRU73QO :   Emin=        0 eV       Emax=          2 MeV
     1015          BetheBloch :   Emin=        2 MeV      Emax=         10 TeV
     1016
     1017msc:   for kaon+    SubType= 10
     1018      Lambda tables from 100 eV  to 10 TeV in 220 bins, spline: 1
     1019      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
     1020      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
     1021          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    10011022
    10021023hIoni:   for  kaon+    SubType= 2
     
    10051026      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    10061027      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1007                Bragg :     Emin=          0 eV         Emax=   1.05231 MeV
    1008           BetheBloch :     Emin=    1.05231 MeV        Emax=   10 TeV
     1028               Bragg :   Emin=        0 eV       Emax=    1.05231 MeV
     1029          BetheBloch :   Emin=  1.05231 MeV      Emax=         10 TeV
    10091030
    10101031hBrems:   for  kaon+    SubType= 3
     
    10121033      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    10131034      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1014                hBrem :     Emin=          0 eV         Emax=   10 TeV
     1035               hBrem :   Emin=        0 eV       Emax=         10 TeV
    10151036
    10161037hPairProd:   for  kaon+    SubType= 4
     
    10181039      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    10191040      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1020            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     1041           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    10211042
    10221043hIoni:   for  kaon-    SubType= 2
     
    10251046      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    10261047      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1027             ICRU73QO :     Emin=          0 eV         Emax=   1.05231 MeV
    1028           BetheBloch :     Emin=    1.05231 MeV        Emax=   10 TeV
     1048            ICRU73QO :   Emin=        0 eV       Emax=    1.05231 MeV
     1049          BetheBloch :   Emin=  1.05231 MeV      Emax=         10 TeV
    10291050
    10301051hBrems:   for  kaon-    SubType= 3
     
    10321053      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    10331054      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1034                hBrem :     Emin=          0 eV         Emax=   10 TeV
     1055               hBrem :   Emin=        0 eV       Emax=         10 TeV
    10351056
    10361057hPairProd:   for  kaon-    SubType= 4
     
    10381059      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    10391060      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1040            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     1061           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    10411062
    10421063muMsc:   for mu+    SubType= 10
     
    10441065      RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 11.4592
    10451066      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1046         WentzelVIUni :     Emin=          0 eV         Emax=   10 TeV
     1067        WentzelVIUni :   Emin=        0 eV       Emax=         10 TeV
    10471068
    10481069muIoni:   for  mu+    SubType= 2
     
    10511072      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    10521073      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1053                Bragg :     Emin=          0 eV         Emax=   200 keV
    1054           BetheBloch :     Emin=        200 keV        Emax=   1 GeV
    1055         MuBetheBloch :     Emin=          1 GeV        Emax=   10 TeV
     1074               Bragg :   Emin=        0 eV       Emax=        200 keV
     1075          BetheBloch :   Emin=      200 keV      Emax=          1 GeV
     1076        MuBetheBloch :   Emin=        1 GeV      Emax=         10 TeV
    10561077
    10571078muBrems:   for  mu+    SubType= 3
     
    10591080      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    10601081      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1061               MuBrem :     Emin=          0 eV         Emax=   10 TeV
     1082              MuBrem :   Emin=        0 eV       Emax=         10 TeV
    10621083
    10631084muPairProd:   for  mu+    SubType= 4
     
    10651086      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    10661087      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1067           muPairProd :     Emin=          0 eV         Emax=   10 TeV
     1088          muPairProd :   Emin=        0 eV       Emax=         10 TeV
    10681089
    10691090CoulombScat:   for  mu+    SubType= 1
     
    10711092      11.4592 < Theta(degree) < 180, Eth(MeV)= 10; pLimit(GeV^1)= 0.139531
    10721093      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1073   eCoulombScattering :     Emin=          0 eV         Emax=   10 TeV
     1094  eCoulombScattering :   Emin=        0 eV       Emax=         10 TeV
    10741095
    10751096muIoni:   for  mu-    SubType= 2
     
    10781099      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    10791100      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1080             ICRU73QO :     Emin=          0 eV         Emax=   200 keV
    1081           BetheBloch :     Emin=        200 keV        Emax=   1 GeV
    1082         MuBetheBloch :     Emin=          1 GeV        Emax=   10 TeV
     1101            ICRU73QO :   Emin=        0 eV       Emax=        200 keV
     1102          BetheBloch :   Emin=      200 keV      Emax=          1 GeV
     1103        MuBetheBloch :   Emin=        1 GeV      Emax=         10 TeV
    10831104
    10841105muBrems:   for  mu-    SubType= 3
     
    10861107      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    10871108      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1088               MuBrem :     Emin=          0 eV         Emax=   10 TeV
     1109              MuBrem :   Emin=        0 eV       Emax=         10 TeV
    10891110
    10901111muPairProd:   for  mu-    SubType= 4
     
    10921113      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    10931114      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1094           muPairProd :     Emin=          0 eV         Emax=   10 TeV
     1115          muPairProd :   Emin=        0 eV       Emax=         10 TeV
    10951116
    10961117CoulombScat:   for  mu-    SubType= 1
     
    10981119      11.4592 < Theta(degree) < 180, Eth(MeV)= 10; pLimit(GeV^1)= 0.139531
    10991120      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1100   eCoulombScattering :     Emin=          0 eV         Emax=   10 TeV
     1121  eCoulombScattering :   Emin=        0 eV       Emax=         10 TeV
    11011122
    11021123hIoni:   for  pi+    SubType= 2
     
    11051126      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    11061127      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1107                Bragg :     Emin=          0 eV         Emax=   297.504 keV
    1108           BetheBloch :     Emin=    297.504 keV        Emax=   10 TeV
     1128               Bragg :   Emin=        0 eV       Emax=    297.505 keV
     1129          BetheBloch :   Emin=  297.505 keV      Emax=         10 TeV
    11091130
    11101131hBrems:   for  pi+    SubType= 3
     
    11121133      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    11131134      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1114                hBrem :     Emin=          0 eV         Emax=   10 TeV
     1135               hBrem :   Emin=        0 eV       Emax=         10 TeV
    11151136
    11161137hPairProd:   for  pi+    SubType= 4
     
    11181139      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    11191140      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1120            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     1141           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    11211142
    11221143msc:   for pi-    SubType= 10
     
    11241145      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
    11251146      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1126           UrbanMsc90 :     Emin=          0 eV         Emax=   10 TeV
     1147          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    11271148
    11281149hIoni:   for  pi-    SubType= 2
     
    11311152      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    11321153      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1133             ICRU73QO :     Emin=          0 eV         Emax=   297.504 keV
    1134           BetheBloch :     Emin=    297.504 keV        Emax=   10 TeV
     1154            ICRU73QO :   Emin=        0 eV       Emax=    297.505 keV
     1155          BetheBloch :   Emin=  297.505 keV      Emax=         10 TeV
    11351156
    11361157hBrems:   for  pi-    SubType= 3
     
    11381159      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    11391160      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1140                hBrem :     Emin=          0 eV         Emax=   10 TeV
     1161               hBrem :   Emin=        0 eV       Emax=         10 TeV
    11411162
    11421163hPairProd:   for  pi-    SubType= 4
     
    11441165      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    11451166      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1146            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     1167           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    11471168
    11481169========= Table of registered couples ==============================
     
    11781199--------- Ranecu engine status ---------
    11791200 Initial seed (index) = 0
    1180  Current couple of seeds = 1968598092, 1623671030
     1201 Current couple of seeds = 885517185, 2109349039
    11811202----------------------------------------
     1203----> SetHisto 1: Edep (MeV/mm) along absorber  (mm);  100 bins from 0 mm to 200 mm
    11821204Start Run processing.
    11831205
     
    11901212 The run consists of 100 alpha of 265 eV  through 20 cm  of TechVacuum (density: 0.01 kg/m3 )
    11911213
    1192  Projected Range= 324.555 um    rms= 92.5084 um
    1193  Mean number of primary steps = 5.31
     1214 Projected Range= 348.588 um    rms= 89.2581 um
     1215 Mean number of primary steps = 5.28
    11941216 Total energy deposit= 265 eV
    1195  NIEL energy deposit = 175.832 eV
     1217 niel energy deposit = 176.836 eV
    11961218
    11971219---------------------------------------------------------
    11981220 Cumulated Doses :      Edep            Edep/Ebeam      Dose
    1199  tally 0:               11.1831 keV     42.2004 %       2.23967e-05 Gy
     1221 tally 0:               10.1345 keV     38.2435 %       2.02966e-05 Gy
    12001222 tally 1:               0 eV    0 %     0 Gy
    12011223 tally 2:               0 eV    0 %     0 Gy
     
    12071229--------- Ranecu engine status ---------
    12081230 Initial seed (index) = 0
    1209  Current couple of seeds = 1729482278, 1310294582
     1231 Current couple of seeds = 230049722, 925291233
    12101232----------------------------------------
    12111233/testem/det/setMat G4_WATER
     
    12151237***** Table : Nb of materials = 6 *****
    12161238
    1217  Material:    Water     density:  1.000 g/cm3   RadL:  36.084 cm   Nucl.Int.Length:  75.424 cm   Imean:  75.000 eV
     1239 Material:    Water     density:  1.000 g/cm3   RadL:  36.084 cm   Nucl.Int.Length:  75.520 cm   Imean:  75.000 eV
    12181240   --->  Element: Hydrogen (H)   Z =  1.0   N =   1.0   A =   1.01 g/mole  ElmMassFraction:  11.19 %  ElmAbundance  66.67 %
    12191241   --->  Element: Oxygen (O)   Z =  8.0   N =  16.0   A =  16.00 g/mole  ElmMassFraction:  88.81 %  ElmAbundance  33.33 %
    12201242
    1221  Material:      Air     density:  1.290 mg/cm3  RadL: 285.161 m    Nucl.Int.Length: 662.680 m    Imean:  85.703 eV   temperature: 273.15 K  pressure:   1.00 atm
     1243 Material:      Air     density:  1.290 mg/cm3  RadL: 285.161 m    Nucl.Int.Length: 662.904 m    Imean:  85.703 eV   temperature: 273.15 K  pressure:   1.00 atm
    12221244   --->  Element: Nitrogen (N)   Z =  7.0   N =  14.0   A =  14.01 g/mole  ElmMassFraction:  70.00 %  ElmAbundance  72.71 %
    12231245   --->  Element: Oxygen (O)   Z =  8.0   N =  16.0   A =  16.00 g/mole  ElmMassFraction:  30.00 %  ElmAbundance  27.29 %
    12241246
    1225  Material: TechVacuum     density:  0.010 kg/m3   RadL:  36.786 km   Nucl.Int.Length:  85.486 km   Imean:  85.703 eV   temperature: 273.15 K  pressure:   0.02 atm
     1247 Material: TechVacuum     density:  0.010 kg/m3   RadL:  36.786 km   Nucl.Int.Length:  85.515 km   Imean:  85.703 eV   temperature: 273.15 K  pressure:   0.02 atm
    12261248   --->  Element: Nitrogen (N)   Z =  7.0   N =  14.0   A =  14.01 g/mole  ElmMassFraction:  70.00 %  ElmAbundance  72.71 %
    12271249   --->  Element: Oxygen (O)   Z =  8.0   N =  16.0   A =  16.00 g/mole  ElmMassFraction:  30.00 %  ElmAbundance  27.29 %
    12281250
    1229  Material: Galactic     density:  0.000 kg/m3   RadL: 204322111.300 pc   Nucl.Int.Length: 113728944.943 pc   Imean:  19.200 eV   temperature:   2.73 K  pressure:   0.00 atm
     1251 Material: Galactic     density:  0.000 kg/m3   RadL: 204322111.300 pc   Nucl.Int.Length: 114334693.470 pc   Imean:  19.200 eV   temperature:   2.73 K  pressure:   0.00 atm
    12301252   --->  Element: Galactic ( )   Z =  1.0   N =   1.0   A =   1.01 g/mole  ElmMassFraction: 100.00 %  ElmAbundance 100.00 %
    12311253
    1232  Material: G4_WATER H_2O   density:  1.000 g/cm3   RadL:  36.083 cm   Nucl.Int.Length:  75.505 cm   Imean:  78.000 eV
     1254 Material: G4_WATER H_2O   density:  1.000 g/cm3   RadL:  36.083 cm   Nucl.Int.Length:  75.517 cm   Imean:  78.000 eV
    12331255   --->  Element: H (H)   Z =  1.0   N =   1.0   A =   1.01 g/mole
    12341256   --->  Isotope:    H1   Z =  1   N =   1   A =   1.01 g/mole   abundance:  99.99 %
     
    12391261   --->  Isotope:   O18   Z =  8   N =  18   A =  18.00 g/mole   abundance:   0.20 %  ElmMassFraction:  88.81 %  ElmAbundance  33.33 %
    12401262
    1241  Material:    G4_Cu     density:  8.960 g/cm3   RadL:   1.436 cm   Nucl.Int.Length:  15.576 cm   Imean: 322.000 eV
     1263 Material:    G4_Cu     density:  8.960 g/cm3   RadL:   1.436 cm   Nucl.Int.Length:  15.514 cm   Imean: 322.000 eV
    12421264   --->  Element: Cu (Cu)   Z = 29.0   N =  63.6   A =  63.55 g/mole
    12431265   --->  Isotope:  Cu63   Z = 29   N =  63   A =  62.93 g/mole   abundance:  69.17 %
     
    12631285phot:   for  gamma    SubType= 12
    12641286      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1265        PhotoElectric :     Emin=          0 eV         Emax=   10 TeV
     1287       PhotoElectric :   Emin=        0 eV       Emax=         10 TeV
    12661288
    12671289compt:   for  gamma    SubType= 13
    12681290      Lambda tables from 100 eV  to 10 TeV in 220 bins, spline: 1
    12691291      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1270        Klein-Nishina :     Emin=          0 eV         Emax=   10 TeV
     1292       Klein-Nishina :   Emin=        0 eV       Emax=         10 TeV
    12711293
    12721294conv:   for  gamma    SubType= 14
    12731295      Lambda tables from 1.022 MeV to 10 TeV in 220 bins, spline: 1
    12741296      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1275        Bethe-Heitler :     Emin=          0 eV         Emax=   10 TeV
     1297        BetheHeitler :   Emin=        0 eV       Emax=         10 TeV
    12761298
    12771299Rayl:   for  gamma    SubType= 11
    12781300      Lambda tables from 100 eV  to 10 TeV in 200 bins, spline: 1
    12791301      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1280    LivermoreRayleigh :     Emin=          0 eV         Emax=   100 GeV
     1302   LivermoreRayleigh :   Emin=        0 eV       Emax=        100 GeV
    12811303
    12821304msc:   for e-    SubType= 10
     
    12841306      RangeFactor= 0.04, stepLimitType: 2, latDisplacement: 1, skin= 1, geomFactor= 2.5
    12851307      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1286           UrbanMsc93 :     Emin=          0 eV         Emax=   10 TeV
     1308          UrbanMsc93 :   Emin=        0 eV       Emax=         10 TeV
    12871309
    12881310eIoni:   for  e-    SubType= 2
     
    12911313      finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    12921314      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1293         MollerBhabha :     Emin=          0 eV         Emax=   10 TeV
     1315        MollerBhabha :   Emin=        0 eV       Emax=         10 TeV
    12941316
    12951317eBrem:   for  e-    SubType= 3
     
    12981320      LPM flag: 1 for E > 1 GeV
    12991321      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1300                eBrem :     Emin=          0 eV         Emax=   1 GeV
    1301             eBremRel :     Emin=          1 GeV        Emax=   10 TeV
     1322               eBrem :   Emin=        0 eV       Emax=          1 GeV  AngularGenUrban
     1323            eBremLPM :   Emin=        1 GeV      Emax=         10 TeV  AngularGenUrban
    13021324
    13031325eIoni:   for  e+    SubType= 2
     
    13061328      finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    13071329      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1308         MollerBhabha :     Emin=          0 eV         Emax=   10 TeV
     1330        MollerBhabha :   Emin=        0 eV       Emax=         10 TeV
    13091331
    13101332eBrem:   for  e+    SubType= 3
     
    13131335      LPM flag: 1 for E > 1 GeV
    13141336      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1315                eBrem :     Emin=          0 eV         Emax=   1 GeV
    1316             eBremRel :     Emin=          1 GeV        Emax=   10 TeV
     1337               eBrem :   Emin=        0 eV       Emax=          1 GeV  AngularGenUrban
     1338            eBremLPM :   Emin=        1 GeV      Emax=         10 TeV  AngularGenUrban
    13171339
    13181340annihil:   for  e+    SubType= 5
    13191341      Lambda tables from 100 eV  to 10 TeV in 220 bins, spline: 1
    13201342      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1321             eplus2gg :     Emin=          0 eV         Emax=   10 TeV
     1343            eplus2gg :   Emin=        0 eV       Emax=         10 TeV
    13221344
    13231345msc:   for proton    SubType= 10
     
    13251347      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
    13261348      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1327           UrbanMsc90 :     Emin=          0 eV         Emax=   10 TeV
     1349          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    13281350
    13291351hIoni:   for  proton    SubType= 2
     
    13321354      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    13331355      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1334                Bragg :     Emin=          0 eV         Emax=   2 MeV
    1335           BetheBloch :     Emin=          2 MeV        Emax=   10 TeV
     1356               Bragg :   Emin=        0 eV       Emax=          2 MeV
     1357          BetheBloch :   Emin=        2 MeV      Emax=         10 TeV
    13361358
    13371359hBrems:   for  proton    SubType= 3
     
    13391361      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    13401362      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1341                hBrem :     Emin=          0 eV         Emax=   10 TeV
     1363               hBrem :   Emin=        0 eV       Emax=         10 TeV
    13421364
    13431365hPairProd:   for  proton    SubType= 4
     
    13451367      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    13461368      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1347            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     1369           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    13481370
    13491371msc:   for GenericIon    SubType= 10
    13501372      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
    13511373      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1352           UrbanMsc90 :     Emin=          0 eV         Emax=   10 TeV
     1374          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    13531375
    13541376ionIoni:   for  GenericIon    SubType= 2
     
    13561378      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    13571379      finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
    1358       Stopping Power data for 17 ion/material pairs, nuclearStopping: 1
    1359       ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1360          ParamICRU73 :     Emin=          0 eV         Emax=   10 TeV
     1380      Stopping Power data for 17 ion/material pairs 
     1381      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
     1382         ParamICRU73 :   Emin=        0 eV       Emax=         10 TeV
    13611383
    13621384nuclearStopping:   for  GenericIon    SubType= 1
    13631385      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1364    ICRU49NucStopping :     Emin=          0 eV         Emax=   10 TeV
     1386   ICRU49NucStopping :   Emin=        0 eV       Emax=         10 TeV
    13651387
    13661388nuclearStopping:   for  alpha    SubType= 1
    13671389      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1368    ICRU49NucStopping :     Emin=          0 eV         Emax=   10 TeV
     1390   ICRU49NucStopping :   Emin=        0 eV       Emax=         10 TeV
    13691391
    13701392hIoni:   for  anti_proton    SubType= 2
     
    13731395      finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    13741396      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1375             ICRU73QO :     Emin=          0 eV         Emax=   2 MeV
    1376           BetheBloch :     Emin=          2 MeV        Emax=   10 TeV
     1397            ICRU73QO :   Emin=        0 eV       Emax=          2 MeV
     1398          BetheBloch :   Emin=        2 MeV      Emax=         10 TeV
     1399
     1400msc:   for kaon+    SubType= 10
     1401      Lambda tables from 100 eV  to 10 TeV in 220 bins, spline: 1
     1402      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
     1403      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
     1404          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    13771405
    13781406hIoni:   for  kaon+    SubType= 2
     
    13811409      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    13821410      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1383                Bragg :     Emin=          0 eV         Emax=   1.05231 MeV
    1384           BetheBloch :     Emin=    1.05231 MeV        Emax=   10 TeV
     1411               Bragg :   Emin=        0 eV       Emax=    1.05231 MeV
     1412          BetheBloch :   Emin=  1.05231 MeV      Emax=         10 TeV
    13851413
    13861414hBrems:   for  kaon+    SubType= 3
     
    13881416      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    13891417      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1390                hBrem :     Emin=          0 eV         Emax=   10 TeV
     1418               hBrem :   Emin=        0 eV       Emax=         10 TeV
    13911419
    13921420hPairProd:   for  kaon+    SubType= 4
     
    13941422      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    13951423      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1396            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     1424           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    13971425
    13981426hIoni:   for  kaon-    SubType= 2
     
    14011429      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    14021430      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1403             ICRU73QO :     Emin=          0 eV         Emax=   1.05231 MeV
    1404           BetheBloch :     Emin=    1.05231 MeV        Emax=   10 TeV
     1431            ICRU73QO :   Emin=        0 eV       Emax=    1.05231 MeV
     1432          BetheBloch :   Emin=  1.05231 MeV      Emax=         10 TeV
    14051433
    14061434hBrems:   for  kaon-    SubType= 3
     
    14081436      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    14091437      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1410                hBrem :     Emin=          0 eV         Emax=   10 TeV
     1438               hBrem :   Emin=        0 eV       Emax=         10 TeV
    14111439
    14121440hPairProd:   for  kaon-    SubType= 4
     
    14141442      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    14151443      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1416            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     1444           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    14171445
    14181446muMsc:   for mu+    SubType= 10
     
    14201448      RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 11.4592
    14211449      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1422         WentzelVIUni :     Emin=          0 eV         Emax=   10 TeV
     1450        WentzelVIUni :   Emin=        0 eV       Emax=         10 TeV
    14231451
    14241452muIoni:   for  mu+    SubType= 2
     
    14271455      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    14281456      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1429                Bragg :     Emin=          0 eV         Emax=   200 keV
    1430           BetheBloch :     Emin=        200 keV        Emax=   1 GeV
    1431         MuBetheBloch :     Emin=          1 GeV        Emax=   10 TeV
     1457               Bragg :   Emin=        0 eV       Emax=        200 keV
     1458          BetheBloch :   Emin=      200 keV      Emax=          1 GeV
     1459        MuBetheBloch :   Emin=        1 GeV      Emax=         10 TeV
    14321460
    14331461muBrems:   for  mu+    SubType= 3
     
    14351463      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    14361464      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1437               MuBrem :     Emin=          0 eV         Emax=   10 TeV
     1465              MuBrem :   Emin=        0 eV       Emax=         10 TeV
    14381466
    14391467muPairProd:   for  mu+    SubType= 4
     
    14411469      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    14421470      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1443           muPairProd :     Emin=          0 eV         Emax=   10 TeV
     1471          muPairProd :   Emin=        0 eV       Emax=         10 TeV
    14441472
    14451473CoulombScat:   for  mu+    SubType= 1
     
    14471475      11.4592 < Theta(degree) < 180, Eth(MeV)= 10; pLimit(GeV^1)= 0.139531
    14481476      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1449   eCoulombScattering :     Emin=          0 eV         Emax=   10 TeV
     1477  eCoulombScattering :   Emin=        0 eV       Emax=         10 TeV
    14501478
    14511479muIoni:   for  mu-    SubType= 2
     
    14541482      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    14551483      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1456             ICRU73QO :     Emin=          0 eV         Emax=   200 keV
    1457           BetheBloch :     Emin=        200 keV        Emax=   1 GeV
    1458         MuBetheBloch :     Emin=          1 GeV        Emax=   10 TeV
     1484            ICRU73QO :   Emin=        0 eV       Emax=        200 keV
     1485          BetheBloch :   Emin=      200 keV      Emax=          1 GeV
     1486        MuBetheBloch :   Emin=        1 GeV      Emax=         10 TeV
    14591487
    14601488muBrems:   for  mu-    SubType= 3
     
    14621490      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    14631491      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1464               MuBrem :     Emin=          0 eV         Emax=   10 TeV
     1492              MuBrem :   Emin=        0 eV       Emax=         10 TeV
    14651493
    14661494muPairProd:   for  mu-    SubType= 4
     
    14681496      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    14691497      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1470           muPairProd :     Emin=          0 eV         Emax=   10 TeV
     1498          muPairProd :   Emin=        0 eV       Emax=         10 TeV
    14711499
    14721500CoulombScat:   for  mu-    SubType= 1
     
    14741502      11.4592 < Theta(degree) < 180, Eth(MeV)= 10; pLimit(GeV^1)= 0.139531
    14751503      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1476   eCoulombScattering :     Emin=          0 eV         Emax=   10 TeV
     1504  eCoulombScattering :   Emin=        0 eV       Emax=         10 TeV
    14771505
    14781506hIoni:   for  pi+    SubType= 2
     
    14811509      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    14821510      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1483                Bragg :     Emin=          0 eV         Emax=   297.504 keV
    1484           BetheBloch :     Emin=    297.504 keV        Emax=   10 TeV
     1511               Bragg :   Emin=        0 eV       Emax=    297.505 keV
     1512          BetheBloch :   Emin=  297.505 keV      Emax=         10 TeV
    14851513
    14861514hBrems:   for  pi+    SubType= 3
     
    14881516      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    14891517      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1490                hBrem :     Emin=          0 eV         Emax=   10 TeV
     1518               hBrem :   Emin=        0 eV       Emax=         10 TeV
    14911519
    14921520hPairProd:   for  pi+    SubType= 4
     
    14941522      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    14951523      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1496            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     1524           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    14971525
    14981526msc:   for pi-    SubType= 10
     
    15001528      RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
    15011529      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1502           UrbanMsc90 :     Emin=          0 eV         Emax=   10 TeV
     1530          UrbanMsc90 :   Emin=        0 eV       Emax=         10 TeV
    15031531
    15041532hIoni:   for  pi-    SubType= 2
     
    15071535      finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
    15081536      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1509             ICRU73QO :     Emin=          0 eV         Emax=   297.504 keV
    1510           BetheBloch :     Emin=    297.504 keV        Emax=   10 TeV
     1537            ICRU73QO :   Emin=        0 eV       Emax=    297.505 keV
     1538          BetheBloch :   Emin=  297.505 keV      Emax=         10 TeV
    15111539
    15121540hBrems:   for  pi-    SubType= 3
     
    15141542      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    15151543      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1516                hBrem :     Emin=          0 eV         Emax=   10 TeV
     1544               hBrem :   Emin=        0 eV       Emax=         10 TeV
    15171545
    15181546hPairProd:   for  pi-    SubType= 4
     
    15201548      Lambda tables from threshold to 10 TeV in 220 bins, spline: 1
    15211549      ===== EM models for the G4Region  DefaultRegionForTheWorld ======
    1522            hPairProd :     Emin=          0 eV         Emax=   10 TeV
     1550           hPairProd :   Emin=        0 eV       Emax=         10 TeV
    15231551
    15241552========= Table of registered couples ==============================
     
    15541582--------- Ranecu engine status ---------
    15551583 Initial seed (index) = 0
    1556  Current couple of seeds = 1729482278, 1310294582
     1584 Current couple of seeds = 230049722, 925291233
    15571585----------------------------------------
     1586----> SetHisto 1: Edep (MeV/mm) along absorber  (mm);  100 bins from 0 mm to 200 mm
    15581587Start Run processing.
    15591588
     
    15621591Run Summary
    15631592  Number of events processed : 100
    1564   User=0.04s Real=0.17s Sys=0s
     1593  User=0.04s Real=0.04s Sys=0s
    15651594
    15661595 The run consists of 100 alpha of 100 MeV through 20 cm  of G4_WATER (density: 1 g/cm3 )
    15671596
    1568  Projected Range= 6.42764 mm    rms= 40.5907 um
    1569  Mean number of primary steps = 30.4
     1597 Projected Range= 6.42248 mm    rms= 43.1607 um
     1598 Mean number of primary steps = 30.42
    15701599 Total energy deposit= 100 MeV
    1571  NIEL energy deposit = 57.2175 keV
     1600 niel energy deposit = 57.4342 keV
    15721601
    15731602---------------------------------------------------------
    15741603 Cumulated Doses :      Edep            Edep/Ebeam      Dose
    1575  tally 0:               748.313 MeV     7.48313 %       1.49866e-05 Gy
     1604 tally 0:               788.061 MeV     7.88061 %       1.57827e-05 Gy
    15761605 tally 1:               0 eV    0 %     0 Gy
    15771606 tally 2:               0 eV    0 %     0 Gy
     
    15831612--------- Ranecu engine status ---------
    15841613 Initial seed (index) = 0
    1585  Current couple of seeds = 1429738487, 350077603
     1614 Current couple of seeds = 1312548723, 1323488922
    15861615----------------------------------------
    15871616G4 kernel has come to Quit state.
  • trunk/examples/extended/electromagnetic/TestEm7/include/RunAction.hh

    r1337 r1342  
    2424// ********************************************************************
    2525//
    26 // $Id: RunAction.hh,v 1.14 2008/08/22 18:30:27 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     26// $Id: RunAction.hh,v 1.15 2010/09/17 18:45:43 maire Exp $
     27// GEANT4 tag $Name: examples-V09-03-09 $
    2828//
    2929//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     
    3838class DetectorConstruction;
    3939class PhysicsList;
     40class HistoManager;
    4041class PrimaryGeneratorAction;
     42
    4143class G4Run;
    42 class Histo;
    4344
    4445//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     
    4748{
    4849public:
    49   RunAction(DetectorConstruction*, PhysicsList*,
     50  RunAction(DetectorConstruction*, PhysicsList*, HistoManager*,
    5051            PrimaryGeneratorAction*);
    5152  virtual ~RunAction();
     
    5657  void FillTallyEdep(G4int n, G4double e)  {tallyEdep[n] += e;};
    5758  void FillEdep(G4double de, G4double eni) {edeptot += de; eniel += eni;};
    58        
    59   G4double GetBinLength() {return binLength;};
    60   G4double GetLength()    {return length;};
    61   G4double GetOffsetX()   {return offsetX;}
    62  
    63   void FillHisto(G4int id, G4double x, G4double weight = 1.0);
    6459   
    6560  void AddProjRange (G4double x)
     
    7166  DetectorConstruction*   detector;
    7267  PhysicsList*            physics;
     68  HistoManager*           histoManager;
    7369  PrimaryGeneratorAction* kinematic;
    7470  G4double*               tallyEdep;   
    75   G4double                binLength;
    76   G4double                offsetX;
    77   G4double                length;
    7871  G4double                projRange, projRange2;
    7972  G4double                edeptot, eniel;
    8073  G4int                   nPrimarySteps;
    8174  G4int                   nRange;
    82 
    83   Histo*                  histo;
    8475};
    8576
  • trunk/examples/extended/electromagnetic/TestEm7/include/SteppingAction.hh

    r1337 r1342  
    2424// ********************************************************************
    2525//
    26 // $Id: SteppingAction.hh,v 1.2 2006/06/29 16:58:05 gunter Exp $
    27 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     26// $Id: SteppingAction.hh,v 1.3 2010/09/17 18:45:43 maire Exp $
     27// GEANT4 tag $Name: examples-V09-03-09 $
    2828//
    2929//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     
    3636
    3737class DetectorConstruction;
     38class HistoManager;
    3839class RunAction;
    3940
     
    4344{
    4445  public:
    45     SteppingAction(DetectorConstruction*,RunAction*);
     46    SteppingAction(DetectorConstruction*, HistoManager*, RunAction*);
    4647   ~SteppingAction();
    4748
     
    5051  private:
    5152    DetectorConstruction* detector;
     53    HistoManager*         histoManager;   
    5254    RunAction*            runAction;
    5355};
  • trunk/examples/extended/electromagnetic/TestEm7/include/TrackingAction.hh

    r1337 r1342  
    2424// ********************************************************************
    2525//
    26 // $Id: TrackingAction.hh,v 1.2 2006/06/29 16:58:09 gunter Exp $
    27 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     26// $Id: TrackingAction.hh,v 1.3 2010/09/17 18:45:43 maire Exp $
     27// GEANT4 tag $Name: examples-V09-03-09 $
    2828//
    2929//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     
    3636#include "globals.hh"
    3737
     38class DetectorConstruction;
     39class HistoManager;
    3840class RunAction;
    3941
     
    4345
    4446  public: 
    45     TrackingAction(RunAction*);
     47    TrackingAction(DetectorConstruction*, HistoManager*, RunAction*);
    4648   ~TrackingAction() {};
    4749   
     
    4951   
    5052  private:
    51     RunAction* runAction;   
     53    DetectorConstruction* detector;
     54    HistoManager*         histoManager;     
     55    RunAction*            runAction;   
    5256};
    5357
  • trunk/examples/extended/electromagnetic/TestEm7/ionC12.mac

    r1337 r1342  
    1 # $Id: ionC12.mac,v 1.23 2009/11/21 22:02:51 maire Exp $
     1# $Id: ionC12.mac,v 1.24 2010/09/17 18:45:43 maire Exp $
    22#
    33# Macro file for "TestEm7.cc"
     
    4040/testem/event/printModulo 1000
    4141#
    42 /testem/histo/fileName c12
    43 /testem/histo/fileType root
    44 /testem/histo/setHisto 1 100 80 90
    45 /testem/histo/setHisto 2 100 80 90
     42/testem/histo/setFileName c12
     43/testem/histo/setFileType root
     44/testem/histo/setHisto 2 100 80 90 mm
     45/testem/histo/setHisto 3 100 80 90 mm
    4646#
    4747/run/beamOn 1000
  • trunk/examples/extended/electromagnetic/TestEm7/proton.mac

    r1337 r1342  
    1 # $Id: proton.mac,v 1.18 2009/11/21 22:02:51 maire Exp $
     1# $Id: proton.mac,v 1.19 2010/09/17 18:45:43 maire Exp $
    22#
    33# Macro file for "TestEm7.cc"
     
    2828/testem/event/printModulo 1000
    2929#
    30 /testem/histo/fileName p100opt3cut1
    31 /testem/histo/fileType root
    32 /testem/histo/setHisto 1 100 70 80
    33 /testem/histo/setHisto 2 100 70 80
     30/testem/histo/setFileName essai
     31/testem/histo/setFileType root
     32/testem/histo/setHisto 2 100 70 80 mm
     33/testem/histo/setHisto 3 100 70 80 mm
    3434#
    3535/run/beamOn 10000
  • trunk/examples/extended/electromagnetic/TestEm7/src/PhysListEmStandardNR.cc

    r1337 r1342  
    2424// ********************************************************************
    2525//
    26 // $Id: PhysListEmStandardNR.cc,v 1.4 2009/11/21 22:02:51 maire Exp $
    27 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     26// $Id: PhysListEmStandardNR.cc,v 1.5 2010/10/13 12:21:56 vnivanch Exp $
     27// GEANT4 tag $Name: examples-V09-03-09 $
    2828//
    2929//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     
    122122
    123123      G4ionIonisation* ion = new G4ionIonisation();
    124       ion->ActivateNuclearStopping(false);
    125124      pmanager->AddProcess(ion, -1, 2, 2);
    126125
     
    136135
    137136      G4ionIonisation* ion = new G4ionIonisation();
    138       ion->ActivateNuclearStopping(false);
    139137      ion->SetStepFunction(0.1, um);
    140138      pmanager->AddProcess(ion, -1, 2, 2);
  • trunk/examples/extended/electromagnetic/TestEm7/src/RunAction.cc

    r1337 r1342  
    2424// ********************************************************************
    2525//
    26 // $Id: RunAction.cc,v 1.24 2008/08/22 18:30:27 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     26// $Id: RunAction.cc,v 1.25 2010/09/17 18:45:43 maire Exp $
     27// GEANT4 tag $Name: examples-V09-03-09 $
    2828//
    2929//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     
    3434#include "PhysicsList.hh"
    3535#include "StepMax.hh"
     36#include "HistoManager.hh"
    3637#include "PrimaryGeneratorAction.hh"
    3738
     
    4243
    4344#include "Randomize.hh"
    44 #include "Histo.hh"
    4545
    4646//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
    4747
    4848RunAction::RunAction(DetectorConstruction* det, PhysicsList* phys,
    49                      PrimaryGeneratorAction* kin)
    50 :detector(det), physics(phys), kinematic(kin)
     49                     HistoManager* histo, PrimaryGeneratorAction* kin)
     50:detector(det), physics(phys),histoManager(histo), kinematic(kin)
    5151{
    5252  tallyEdep = new G4double[MaxTally];
    53   binLength = offsetX = 0.;
    54   histo = new Histo();
    55   histo->setFileName("testem7");
    56   histo->add1D("1","Edep (MeV/mm) along absorber (mm)", 100, 0, 100);
    57   histo->add1D("2","Edep (MeV/mm) along absorber zoomed (mm)", 100, 0, 100);
    58   histo->add1D("3","Projectile range (mm)", 100, 0, 100);
    5953}
    6054
     
    6458{
    6559  delete [] tallyEdep;
    66   delete histo; 
    67 }
    68 
    69 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
    70 
    71 void RunAction::FillHisto(G4int ih, G4double x, G4double weight)
    72 {
    73   histo->fill(ih, x, weight);
    7460}
    7561
     
    9480
    9581  // define "1" histogram binning
    96   length  = detector->GetAbsorSizeX();
     82  // histogram "1" is defined by the length of the target
     83  // zoomed histograms are defined by UI command 
     84  G4double length  = detector->GetAbsorSizeX();
    9785  G4double stepMax = physics->GetStepMaxProcess()->GetMaxStep();
    98   const G4int nbmin = 100;
     86  G4int nbmin = 100;
    9987  G4int nbBins = (G4int)(0.5 + length/stepMax);
    10088  if (nbBins < nbmin) nbBins = nbmin;
    101   binLength = length/nbBins;
    102   offsetX   = 0.5*length;
    103    
    104   // histogram "1" is defined by the length of the target
    105   // zoomed histograms are defined by UI command
    106   histo->setHisto1D(0, nbBins, 0, length, mm);
     89  histoManager->SetHisto(1, nbBins, 0., length, "mm");
    10790 
    108   histo->book();
     91  histoManager->book();
    10992}
    11093
     
    147130  G4cout << " Mean number of primary steps = "<< nstep << G4endl;
    148131
    149   //compute energy deposition and NIEL
     132  //compute energy deposition and niel
    150133  //
    151134  edeptot /= NbofEvents;
     
    153136         << G4endl;
    154137  eniel /= NbofEvents;
    155   G4cout << " NIEL energy deposit = "<< G4BestUnit(eniel,"Energy")
     138  G4cout << " niel energy deposit = "<< G4BestUnit(eniel,"Energy")
    156139         << G4endl;
    157140     
     
    176159  }
    177160
    178   // normalize histogram
    179   G4double fac = (mm/MeV)/(NbofEvents *  binLength);
    180   for (G4int j=0; j<3; j++) {histo->scale(j, fac);}
     161  // normalize histograms
     162  for (G4int j=1; j<3; j++) { 
     163    G4double binWidth = histoManager->GetBinWidth(j);
     164    G4double fac = (mm/MeV)/(NbofEvents * binWidth);
     165    histoManager->Scale(j, fac);
     166  }
     167  histoManager->Scale(3, 1./NbofEvents);
    181168 
    182169  // save and clean histo
    183   histo->save();
     170  histoManager->save();
    184171 
    185172  // show Rndm status
  • trunk/examples/extended/electromagnetic/TestEm7/src/SteppingAction.cc

    r1337 r1342  
    2424// ********************************************************************
    2525//
    26 // $Id: SteppingAction.cc,v 1.14 2008/08/22 18:30:27 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     26// $Id: SteppingAction.cc,v 1.15 2010/09/17 18:45:43 maire Exp $
     27// GEANT4 tag $Name: examples-V09-03-09 $
    2828//
    2929//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     
    3232#include "SteppingAction.hh"
    3333#include "DetectorConstruction.hh"
     34#include "HistoManager.hh"
    3435#include "RunAction.hh"
    3536#include "G4SteppingManager.hh"
     
    3839//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
    3940
    40 SteppingAction::SteppingAction(DetectorConstruction* det,RunAction* RuAct)
    41 :detector(det),runAction(RuAct)
     41SteppingAction::SteppingAction(DetectorConstruction* det, HistoManager* histo,
     42                                RunAction* RuAct)
     43:detector(det), histoManager(histo), runAction(RuAct)
    4244{ }
    4345
     
    4951//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
    5052
    51 void SteppingAction::UserSteppingAction(const G4Step* aStep)
     53void SteppingAction::UserSteppingAction(const G4Step* step)
    5254{
    53   G4double edep = aStep->GetTotalEnergyDeposit();
     55  G4double edep = step->GetTotalEnergyDeposit();
    5456  if (edep <= 0.) return;
     57 
     58  G4double niel = step->GetNonIonizingEnergyDeposit();
    5559
    56   // G4cout << "edep= " << edep << "NIEL= " << aStep->GetNonIonizingEnergyDeposit()<<G4endl;
     60  runAction->FillEdep(edep, niel);
    5761
    58   runAction->FillEdep(edep,aStep->GetNonIonizingEnergyDeposit());
    59 
    60   if(aStep->GetTrack()->GetTrackID() == 1) runAction->AddPrimaryStep(); 
     62  if (step->GetTrack()->GetTrackID() == 1) runAction->AddPrimaryStep(); 
    6163 
    6264  //Bragg curve
    6365  //   
    64   G4StepPoint* prePoint  = aStep->GetPreStepPoint();
    65   G4StepPoint* postPoint = aStep->GetPostStepPoint();
     66  G4StepPoint* prePoint  = step->GetPreStepPoint();
     67  G4StepPoint* postPoint = step->GetPostStepPoint();
    6668   
    67   G4double x1 = prePoint->GetPosition().x(), x2 = postPoint->GetPosition().x(); 
    68   G4double x = runAction->GetOffsetX() + x1 + G4UniformRand()*(x2-x1);
    69   runAction->FillHisto(0, x/mm , edep);
    70   runAction->FillHisto(1, x/mm , edep);
     69  G4double x1 = prePoint->GetPosition().x();
     70  G4double x2 = postPoint->GetPosition().x(); 
     71  G4double x  = x1 + G4UniformRand()*(x2-x1) + 0.5*(detector->GetAbsorSizeX());
     72  histoManager->FillHisto(1, x, edep);
     73  histoManager->FillHisto(2, x, edep);
    7174
    7275  //fill tallies
  • trunk/examples/extended/electromagnetic/TestEm7/src/TrackingAction.cc

    r1337 r1342  
    2424// ********************************************************************
    2525//
    26 // $Id: TrackingAction.cc,v 1.5 2008/08/22 18:30:27 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-04-beta-01 $
     26// $Id: TrackingAction.cc,v 1.6 2010/09/17 18:45:43 maire Exp $
     27// GEANT4 tag $Name: examples-V09-03-09 $
    2828//
    2929//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
     
    3232#include "TrackingAction.hh"
    3333
     34#include "DetectorConstruction.hh"
     35#include "HistoManager.hh"
    3436#include "RunAction.hh"
    3537
     
    3840//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
    3941
    40 TrackingAction::TrackingAction(RunAction* run)
    41 :runAction(run)
     42TrackingAction::TrackingAction(DetectorConstruction* det, HistoManager* histo,
     43                               RunAction* run)
     44:detector(det), histoManager(histo), runAction(run)
    4245{ }
    4346
    4447//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
    4548
    46 void TrackingAction::PostUserTrackingAction(const G4Track* aTrack)
     49void TrackingAction::PostUserTrackingAction(const G4Track* track)
    4750{
    4851  // extract Projected Range of primary particle
    49   if (aTrack->GetTrackID() == 1) {
    50     G4double x = aTrack->GetPosition().x() + runAction->GetOffsetX();
    51     if(x > runAction->GetLength()) x = runAction->GetLength();
    52     //G4cout << " range= " << x << " x= " << aTrack->GetPosition().x()
    53     //     << " ofset= " << runAction->GetOffsetX() << G4endl;
     52  if (track->GetTrackID() == 1) {
     53    G4double x = track->GetPosition().x() + 0.5*detector->GetAbsorSizeX();
    5454    if(x > 0.0) runAction->AddProjRange(x);
    55     runAction->FillHisto(2, x/mm, 1.0);
     55    histoManager->FillHisto(3, x);
    5656  } 
    5757}
Note: See TracChangeset for help on using the changeset viewer.