Geant4  10.02.p01
UrQMD.icc
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 //
26 /// \file hadronic/Hadr02/include/UrQMD.icc
27 /// \brief Implementation of the UrQMD class inline functions
28 //
29 // $Id: UrQMD.icc 77519 2013-11-25 10:54:57Z gcosmo $
30 //
31 //---------------------------------------------------------------------------
32 //
33 // ClassName:
34 //
35 // Author: 2012 Andrea Dotti
36 //
37 // created from FTFP_BERT
38 //
39 // Modified:
40 //
41 //----------------------------------------------------------------------------
42 //
43 
44 #include "globals.hh"
45 #include "G4ios.hh"
46 #include <iomanip>
47 
48 #include "G4DecayPhysics.hh"
49 #include "G4EmStandardPhysics.hh"
50 #include "G4EmExtraPhysics.hh"
51 #include "IonUrQMDPhysics.hh"
52 #include "G4StoppingPhysics.hh"
53 #include "G4HadronElasticPhysics.hh"
54 #include "G4NeutronTrackingCut.hh"
55 
56 #include "G4DataQuestionaire.hh"
57 #include "HadronPhysicsUrQMD.hh"
58 
59 #include "G4SystemOfUnits.hh"
60 
61 template<class T> TUrQMD<T>::TUrQMD(G4int ver): T()
62 {
63  G4DataQuestionaire it(photon);
64  G4cout << "<<< Geant4 Physics List simulation engine: UrQMD 0.1"<<G4endl;
65  G4cout <<G4endl;
66  this->defaultCutValue = 0.7*CLHEP::mm;
67  this->SetVerboseLevel(ver);
68 
69  // EM Physics
70  this->RegisterPhysics( new G4EmStandardPhysics(ver));
71 
72  // Synchroton Radiation & GN Physics
73  this->RegisterPhysics( new G4EmExtraPhysics(ver) );
74 
75  // Decays
76  this->RegisterPhysics( new G4DecayPhysics(ver) );
77 
78  // Hadron Elastic scattering
79  this->RegisterPhysics( new G4HadronElasticPhysics(ver) );
80 
81  // Hadron Physics
82  this->RegisterPhysics( new HadronPhysicsUrQMD(ver));
83 
84  // Stopping Physics
85  this->RegisterPhysics( new G4StoppingPhysics(ver) );
86 
87  // Ion Physics
88  this->RegisterPhysics( new IonUrQMDPhysics(ver));
89 
90  // Neutron tracking cut
91  this->RegisterPhysics( new G4NeutronTrackingCut(ver));
92 
93 }
94 
95 template<class T> TUrQMD<T>::~TUrQMD()
96 {
97 }
98 
99 template<class T> void TUrQMD<T>::SetCuts()
100 {
101  if (this->verboseLevel >1){
102  G4cout << "UrQMD::SetCuts:";
103  }
104  // " G4VUserPhysicsList::SetCutsWithDefault" method sets
105  // the default cut value for all particle types
106 
107  this->SetCutsWithDefault();
108 }