2 // ********************************************************************
 
    3 // * License and Disclaimer                                           *
 
    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.                             *
 
   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.         *
 
   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 // ********************************************************************
 
   26 /// \file hadronic/Hadr02/include/UrQMD.icc
 
   27 /// \brief Implementation of the UrQMD class inline functions
 
   29 // $Id: UrQMD.icc 77519 2013-11-25 10:54:57Z gcosmo $
 
   31 //---------------------------------------------------------------------------
 
   35 // Author: 2012 Andrea Dotti
 
   37 //   created from FTFP_BERT
 
   41 //----------------------------------------------------------------------------
 
   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"
 
   56 #include "G4DataQuestionaire.hh"
 
   57 #include "HadronPhysicsUrQMD.hh"
 
   59 #include "G4SystemOfUnits.hh"
 
   61 template<class T> TUrQMD<T>::TUrQMD(G4int ver):  T()
 
   63   G4DataQuestionaire it(photon);
 
   64   G4cout << "<<< Geant4 Physics List simulation engine: UrQMD 0.1"<<G4endl;
 
   66   this->defaultCutValue = 0.7*CLHEP::mm;  
 
   67   this->SetVerboseLevel(ver);
 
   70   this->RegisterPhysics( new G4EmStandardPhysics(ver));
 
   72   // Synchroton Radiation & GN Physics
 
   73   this->RegisterPhysics( new G4EmExtraPhysics(ver) );
 
   76   this->RegisterPhysics( new G4DecayPhysics(ver) );
 
   78    // Hadron Elastic scattering
 
   79   this->RegisterPhysics( new G4HadronElasticPhysics(ver) );
 
   82   this->RegisterPhysics(  new HadronPhysicsUrQMD(ver));
 
   85   this->RegisterPhysics( new G4StoppingPhysics(ver) );
 
   88   this->RegisterPhysics( new IonUrQMDPhysics(ver));
 
   90   // Neutron tracking cut
 
   91   this->RegisterPhysics( new G4NeutronTrackingCut(ver));
 
   95 template<class T> TUrQMD<T>::~TUrQMD()
 
   99 template<class T> void TUrQMD<T>::SetCuts()
 
  101   if (this->verboseLevel >1){
 
  102     G4cout << "UrQMD::SetCuts:";
 
  104   //  " G4VUserPhysicsList::SetCutsWithDefault" method sets 
 
  105   //   the default cut value for all particle types 
 
  107   this->SetCutsWithDefault();