// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // /// \file hadronic/Hadr02/include/UrQMD.icc /// \brief Implementation of the UrQMD class inline functions // // $Id: UrQMD.icc 77519 2013-11-25 10:54:57Z gcosmo $ // //--------------------------------------------------------------------------- // // ClassName: // // Author: 2012 Andrea Dotti // // created from FTFP_BERT // // Modified: // //---------------------------------------------------------------------------- // #include "globals.hh" #include "G4ios.hh" #include #include "G4DecayPhysics.hh" #include "G4EmStandardPhysics.hh" #include "G4EmExtraPhysics.hh" #include "IonUrQMDPhysics.hh" #include "G4StoppingPhysics.hh" #include "G4HadronElasticPhysics.hh" #include "G4NeutronTrackingCut.hh" #include "G4DataQuestionaire.hh" #include "HadronPhysicsUrQMD.hh" #include "G4SystemOfUnits.hh" template TUrQMD::TUrQMD(G4int ver): T() { G4DataQuestionaire it(photon); G4cout << "<<< Geant4 Physics List simulation engine: UrQMD 0.1"<defaultCutValue = 0.7*CLHEP::mm; this->SetVerboseLevel(ver); // EM Physics this->RegisterPhysics( new G4EmStandardPhysics(ver)); // Synchroton Radiation & GN Physics this->RegisterPhysics( new G4EmExtraPhysics(ver) ); // Decays this->RegisterPhysics( new G4DecayPhysics(ver) ); // Hadron Elastic scattering this->RegisterPhysics( new G4HadronElasticPhysics(ver) ); // Hadron Physics this->RegisterPhysics( new HadronPhysicsUrQMD(ver)); // Stopping Physics this->RegisterPhysics( new G4StoppingPhysics(ver) ); // Ion Physics this->RegisterPhysics( new IonUrQMDPhysics(ver)); // Neutron tracking cut this->RegisterPhysics( new G4NeutronTrackingCut(ver)); } template TUrQMD::~TUrQMD() { } template void TUrQMD::SetCuts() { if (this->verboseLevel >1){ G4cout << "UrQMD::SetCuts:"; } // " G4VUserPhysicsList::SetCutsWithDefault" method sets // the default cut value for all particle types this->SetCutsWithDefault(); }