Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-04 08:05:11

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/CRMC_FTFP_BERT.cc
0027 /// \brief Implementation of the CRMC_FTFP_BERT class methods
0028 //
0029 //---------------------------------------------------------------------------
0030 //
0031 // ClassName: CRMC_FTFP_BERT
0032 //
0033 // Author:    2018 Alberto Ribon
0034 //
0035 // Modified:
0036 // -  18-May-2021 Alberto Ribon : Migrated to non-templated physics list.
0037 //
0038 //----------------------------------------------------------------------------
0039 //
0040 #include "CRMC_FTFP_BERT.hh"
0041 
0042 #include "G4ios.hh"
0043 #include "globals.hh"
0044 
0045 #include <CLHEP/Units/SystemOfUnits.h>
0046 #include <iomanip>
0047 
0048 #ifdef G4_USE_CRMC
0049 
0050 #  include "HadronPhysicsCRMC_FTFP_BERT.hh"
0051 #  include "IonCRMCPhysics.hh"
0052 
0053 #  include "G4DecayPhysics.hh"
0054 #  include "G4EmExtraPhysics.hh"
0055 #  include "G4EmStandardPhysics.hh"
0056 #  include "G4HadronElasticPhysics.hh"
0057 #  include "G4NeutronTrackingCut.hh"
0058 #  include "G4StoppingPhysics.hh"
0059 
0060 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0061 
0062 CRMC_FTFP_BERT::CRMC_FTFP_BERT(G4int ver)
0063 {
0064   if (ver > 0) {
0065     G4cout << "<<< Geant4 Physics List simulation engine: CRMC_FTFP_BERT" << G4endl << G4endl;
0066   }
0067   defaultCutValue = 0.7 * CLHEP::mm;
0068   SetVerboseLevel(ver);
0069   RegisterPhysics(new G4EmStandardPhysics(ver));  // EM Physics
0070   RegisterPhysics(new G4EmExtraPhysics(ver));  // Synchroton Radiation & GN Physics
0071   RegisterPhysics(new G4DecayPhysics(ver));  // Decays
0072   RegisterPhysics(new G4HadronElasticPhysics(ver));  // Hadron Elastic physics
0073   RegisterPhysics(new HadronPhysicsCRMC_FTFP_BERT(ver));  // Hadron Inelastic physics
0074   RegisterPhysics(new G4StoppingPhysics(ver));  // Stopping Physics
0075   RegisterPhysics(new IonCRMCPhysics(ver));  // Ion Physics
0076   RegisterPhysics(new G4NeutronTrackingCut(ver));  // Neutron tracking cut
0077 }
0078 
0079 #else  // i.e. G4_USE_CRMC not defined
0080 
0081 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0082 
0083 CRMC_FTFP_BERT::CRMC_FTFP_BERT(G4int)
0084 {
0085   G4ExceptionDescription de;
0086   de << "Support for CRMC_FTFP_BERT not enabled" << G4endl;
0087   G4Exception(__FILE__, "CRMC_FTFP_BERT-01", FatalException, de,
0088               "Code should be compiled with G4_USE_CRMC environment variable set.");
0089 }
0090 
0091 #endif  // G4_USE_CRMC