Back to home page

EIC code displayed by LXR

 
 

    


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

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/HIJING.cc
0027 /// \brief Implementation of the HIJING 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 "HIJING.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_HIJING
0050 
0051 #  include "HadronPhysicsHIJING.hh"
0052 #  include "IonHIJINGPhysics.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 HIJING::HIJING(G4int ver)
0064 {
0065   if (ver > 0) {
0066     G4cout << "<<< Geant4 Physics List simulation engine: HIJING" << 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 HadronPhysicsHIJING(ver));  // Hadron Inelastic physics
0075   RegisterPhysics(new G4StoppingPhysics(ver));  // Stopping Physics
0076   RegisterPhysics(new IonHIJINGPhysics(ver));  // Ion Physics
0077   RegisterPhysics(new G4NeutronTrackingCut(ver));  // Neutron tracking cut
0078 }
0079 
0080 #else  // i.e. G4_USE_HIJING not defined
0081 
0082 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0083 
0084 HIJING::HIJING(G4int)
0085 {
0086   G4ExceptionDescription de;
0087   de << "Support for HIJING not enabled" << G4endl;
0088   G4Exception(__FILE__, "HIJING-01", FatalException, de,
0089               "Code should be compiled with G4_USE_HIJING environment variable set.");
0090 }
0091 
0092 #endif  // G4_USE_HIJING