Geant4  9.6.p02
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
A01PhysicsList.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 "A01PhysicsList.hh"
38 
39 #include "globals.hh"
40 #include "G4ParticleDefinition.hh"
41 #include "G4ParticleWithCuts.hh"
42 #include "G4ProcessManager.hh"
43 #include "G4ProcessVector.hh"
44 #include "G4ParticleTypes.hh"
45 #include "G4ParticleTable.hh"
46 
47 #include "G4Material.hh"
48 #include "G4MaterialTable.hh"
49 #include "G4SystemOfUnits.hh"
50 #include "G4ios.hh"
51 #include <iomanip>
52 
53 #include "A01GeneralPhysics.hh"
54 #include "A01EMPhysics.hh"
55 #include "A01MuonPhysics.hh"
56 #include "A01HadronPhysics.hh"
57 #include "A01IonPhysics.hh"
58 
59 //#include "HadronPhysicsQGSP_BERT.hh"
60 //#include "HadronPhysicsQGSP_BIC.hh"
61 
63 {
64 
65  G4cout << "You are using the A01PhysicsList" << G4endl;
66  G4cout << "Full set of particles (barions bosons and mesons) will be created and" << G4endl;
67  G4cout << "Standard EM Physics and Low & High Energy parameterized models will be applied." << G4endl;
68  G4cout << "A01PhysicsList is optimized for robustness" << G4endl;
69  G4cout << "and not for any particular usage." << G4endl;
70  G4cout << "For the hadronic physics, educated guesses of physics list are prepared for various use cases." << G4endl;
71  G4cout << "When you will start REAL calculations for your own interest," << G4endl;
72  G4cout << "please consider the usage of hadronic_lists instead of A01PhysicsLists." << G4endl;
73  G4cout << "More information can also be found from the Geant4 HyperNews." << G4endl;
74  G4cout << "http://geant4-hn.slac.stanford.edu:5090/Geant4-HyperNews/index" << G4endl;
75  G4cout << "" << G4endl;
76 
77  // default cut value (1.0mm)
78  defaultCutValue = 1.0*mm;
79  SetVerboseLevel(1);
80 
81  // General Physics ( Create ALL Particle and apply Decay )
82  RegisterPhysics( new A01GeneralPhysics("general") );
83 
84  // EM Physics ( Apply related Processes to gamma and e-/+)
85  RegisterPhysics( new A01EMPhysics("standard EM"));
86 
87  // Muon Physics ( Apply related processes to mu and tau
88  RegisterPhysics( new A01MuonPhysics("muon"));
89 
90  // Hadron Physics ( Apply related processes to hadrons )
91  RegisterPhysics( new A01HadronPhysics("hadron"));
92 // We do not use hadronic lists since v7.
93  //RegisterPhysics( new HadronPhysicsQGSP_BERT("hadron"));
94  //RegisterPhysics( new HadronPhysicsQGSP_BIC("hadron"));
95 
96  // Ion Physics ( Apply related processes to ions )
97  RegisterPhysics( new A01IonPhysics("ion"));
98 
99 }
100 
102 {
103 }
104 
106 {
107  // " G4VUserPhysicsList::SetCutsWithDefault" method sets
108  // the default cut value for all particle types
110 }
111 
112 
113