Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RE02PhysicsList.cc
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
28 //
29 // $Id$
30 // --------------------------------------------------------------
31 //
32 // 28-Jan-04 Add QGSP_BERT and QGSP_BIC for hadronic lists. T. Koi
33 // 22-Nov-04 Comment out QGSP_BERT and QGSP_BIC
34 // Output Notificaiton message
35 // All Particles are created in GeneralPhysics
36 
37 #include "RE02PhysicsList.hh"
38 
39 #include "globals.hh"
40 #include "G4SystemOfUnits.hh"
41 #include "G4ParticleDefinition.hh"
42 #include "G4ParticleWithCuts.hh"
43 #include "G4ProcessManager.hh"
44 #include "G4ProcessVector.hh"
45 #include "G4ParticleTypes.hh"
46 #include "G4ParticleTable.hh"
47 
48 #include "G4Material.hh"
49 #include "G4MaterialTable.hh"
50 #include "G4ios.hh"
51 #include <iomanip>
52 
53 #include "RE02GeneralPhysics.hh"
54 #include "RE02EMPhysics.hh"
55 #include "RE02MuonPhysics.hh"
56 #include "RE02HadronPhysics.hh"
57 #include "RE02IonPhysics.hh"
58 
59 //#include "HadronPhysicsQGSP_BERT.hh"
60 //#include "HadronPhysicsQGSP_BIC.hh"
61 
62 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
64 {
65 
66  G4cout
67  << "You are using the RE02PhysicsList\n"
68  << "This PhysicsList originally comes from example/extended/analysis/A01,\n"
69  << "and is modified in Hadron Physics in order to involve Binary Cascade\n"
70  << "at low energy region and inelastic process for generic ions.\n"
71  << "Full set of particles (barions bosons and mesons) will be created and\n"
72  << "Standard EM Physics and Low & High Energy parameterized models will be "
73  << "applied.\n"
74  << "RE02PhysicsList is optimized for robustness and not for any particular "
75  << "usage.\n"
76  << "For the hadronic physics, educated guesses of physics list are "
77  << "prepared\n"
78  << "for various use cases.\n"
79  << "When you will start REAL calculations for your own interest, please\n"
80  << "consider the usage of hadronic_lists instead of RE02PhysicsLists.\n"
81  << "More information can also be found from the Geant4 HyperNews.\n"
82  << "http://geant4-hn.slac.stanford.edu:5090/Geant4-HyperNews/index\n"
83  << G4endl;
84 
85  // default cut value (1.0mm)
86  defaultCutValue = 1.0*mm;
87  SetVerboseLevel(1);
88 
89  // General Physics ( Create ALL Particle and apply Decay )
90  RegisterPhysics( new RE02GeneralPhysics("general") );
91 
92  // EM Physics ( Apply related Processes to gamma and e-/+)
93  RegisterPhysics( new RE02EMPhysics("standard EM"));
94 
95  // Muon Physics ( Apply related processes to mu and tau
96  RegisterPhysics( new RE02MuonPhysics("muon"));
97 
98  // Hadron Physics ( Apply related processes to hadrons )
99  RegisterPhysics( new RE02HadronPhysics("hadron"));
100  // We do not use hadronic lists since v7.
101  //RegisterPhysics( new HadronPhysicsQGSP_BERT("hadron"));
102  //RegisterPhysics( new HadronPhysicsQGSP_BIC("hadron"));
103 
104  // Ion Physics ( Apply related processes to ions )
105  RegisterPhysics( new RE02IonPhysics("ion"));
106 
107 }
108 
109 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
111 {
112 }
113 
114 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
116 {
117  // " G4VUserPhysicsList::SetCutsWithDefault" method sets
118  // the default cut value for all particle types
120 }
121 
122 
123