![]() |
|
|||
File indexing completed on 2025-04-04 08:05:13
0001 // 0002 // ******************************************************************** 0003 // * License and Disclaimer * 0004 // * * 0005 // * The Geant4 software is copyright of the Copyright Holders of * 0006 // * the Geant4 Collaboration. It is provided under the terms and * 0007 // * conditions of the Geant4 Software License, included in the file * 0008 // * LICENSE and available at http://cern.ch/geant4/license . These * 0009 // * include a list of copyright holders. * 0010 // * * 0011 // * Neither the authors of this software system, nor their employing * 0012 // * institutes,nor the agencies providing financial support for this * 0013 // * work make any representation or warranty, express or implied, * 0014 // * regarding this software system or assume any liability for its * 0015 // * use. Please see the license in the file LICENSE and URL above * 0016 // * for the full disclaimer and the limitation of liability. * 0017 // * * 0018 // * This code implementation is the result of the scientific and * 0019 // * technical work of the GEANT4 collaboration. * 0020 // * By using, copying, modifying or distributing the software (or * 0021 // * any work based on the software) you agree to acknowledge its * 0022 // * use in resulting scientific publications, and indicate your * 0023 // * acceptance of all terms of the Geant4 Software license. * 0024 // ******************************************************************** 0025 // 0026 /// \file hadronic/Hadr02/src/UrQMD.cc 0027 /// \brief Implementation of the UrQMD class methods 0028 // 0029 //--------------------------------------------------------------------------- 0030 // 0031 // ClassName: 0032 // 0033 // Author: 2012 Andrea Dotti 0034 // created from FTFP_BERT 0035 // 0036 // Modified: 0037 // - 18-May-2021 Alberto Ribon : Migrated to non-templated physics list. 0038 // 0039 //---------------------------------------------------------------------------- 0040 // 0041 #include "UrQMD.hh" 0042 0043 #include "G4ios.hh" 0044 #include "globals.hh" 0045 0046 #include <CLHEP/Units/SystemOfUnits.h> 0047 #include <iomanip> 0048 0049 #ifdef G4_USE_URQMD 0050 0051 # include "HadronPhysicsUrQMD.hh" 0052 # include "IonUrQMDPhysics.hh" 0053 0054 # include "G4DecayPhysics.hh" 0055 # include "G4EmExtraPhysics.hh" 0056 # include "G4EmStandardPhysics.hh" 0057 # include "G4HadronElasticPhysics.hh" 0058 # include "G4NeutronTrackingCut.hh" 0059 # include "G4StoppingPhysics.hh" 0060 0061 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0062 0063 UrQMD::UrQMD(G4int ver) 0064 { 0065 if (ver > 0) { 0066 G4cout << "<<< Geant4 Physics List simulation engine: UrQMD" << G4endl << G4endl; 0067 } 0068 defaultCutValue = 0.7 * CLHEP::mm; 0069 SetVerboseLevel(ver); 0070 RegisterPhysics(new G4EmStandardPhysics(ver)); // EM Physics 0071 RegisterPhysics(new G4EmExtraPhysics(ver)); // Synchroton Radiation & GN Physics 0072 RegisterPhysics(new G4DecayPhysics(ver)); // Decays 0073 RegisterPhysics(new G4HadronElasticPhysics(ver)); // Hadron Elastic physics 0074 RegisterPhysics(new HadronPhysicsUrQMD(ver)); // Hadron Inelastic physics 0075 RegisterPhysics(new G4StoppingPhysics(ver)); // Stopping Physics 0076 RegisterPhysics(new IonUrQMDPhysics(ver)); // Ion Physics 0077 RegisterPhysics(new G4NeutronTrackingCut(ver)); // Neutron tracking cut 0078 } 0079 0080 #else // i.e. G4_USE_URQMD not defined 0081 0082 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 0083 0084 UrQMD::UrQMD(G4int) 0085 { 0086 G4ExceptionDescription de; 0087 de << "Support for UrQMD not enabled" << G4endl; 0088 G4Exception(__FILE__, "UrQMD-01", FatalException, de, 0089 "Code should be compiled with G4_USE_URQMD environment variable set."); 0090 } 0091 0092 #endif // G4_USE_URQMD
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
![]() ![]() |