Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // >> 26 // $Id: QGSP_INCLXX.hh,v 1.1 2009-07-19 18:24:03 kaitanie Exp $ >> 27 // GEANT4 tag $Name: not supported by cvs2svn $ 26 // 28 // 27 //-------------------------------------------- 29 //--------------------------------------------------------------------------- 28 // 30 // 29 // ClassName: QGSP_INCLXX 31 // ClassName: QGSP_INCLXX 30 // 32 // 31 // Author: 04.03.2013 D. Mancusi << 33 // Author: 2011 P. Kaitaniemi 32 // For backwards-compatible inclusion << 34 // >> 35 // Modified: 33 // 36 // 34 //-------------------------------------------- 37 //---------------------------------------------------------------------------- 35 // 38 // 36 #ifndef QGSP_INCLXX_h << 39 #ifndef TQGSP_INCLXX_h 37 #define QGSP_INCLXX_h 1 << 40 #define TQGSP_INCLXX_h 1 >> 41 >> 42 #include "G4VModularPhysicsList.hh" >> 43 #include "globals.hh" >> 44 #include "CompileTimeConstraints.hh" >> 45 >> 46 /** >> 47 * <h1>Physics list QGSP_INCLXX</h1> >> 48 * >> 49 * <h2>Use case</h2> >> 50 * This list is mainly intended for use with energies less than 3 >> 51 * GeV. This is useful for e.g. spallation studies and Accelerator >> 52 * Driven Systems (ADS) applications. >> 53 * >> 54 * <h2>Usage</h2> >> 55 * The physics list can be activated in a simulation application by >> 56 * giving it as part of the user initialization to the run manager: >> 57 * @code >> 58 * G4RunManager *runManager = new G4RunManager; >> 59 * G4VUserPhysicsList *physics = new QGSP_INCLXX; >> 60 * runManager->SetUserInitialization(physics); >> 61 * @endcode >> 62 * >> 63 * <h2>Hadronic models</h2> >> 64 * The list uses INCL++ intra-nuclear cascade model in the energy range 0 - 3 >> 65 * GeV. Between 3 - 15 GeV Bertini cascade is used and above 15 GeV the high >> 66 * energy QGSP model. >> 67 * >> 68 * @see HadronPhysicsQGSP_INCLXX >> 69 * @see G4INCLXXProtonBuilder >> 70 * @see G4INCLXXNeutronBuilder >> 71 * @see G4INCLXXPiKBuilder >> 72 */ >> 73 template<class T> >> 74 class TQGSP_INCLXX: public T >> 75 { >> 76 public: >> 77 TQGSP_INCLXX(G4int ver = 1); >> 78 virtual ~TQGSP_INCLXX(); >> 79 >> 80 public: >> 81 // SetCuts() >> 82 virtual void SetCuts(); >> 83 >> 84 private: >> 85 enum {ok = CompileTimeConstraints::IsA<T, G4VModularPhysicsList>::ok }; >> 86 }; >> 87 >> 88 #include "QGSP_INCLXX.icc" >> 89 typedef TQGSP_INCLXX<G4VModularPhysicsList> QGSP_INCLXX; >> 90 >> 91 // 2011 by P. Kaitaniemi >> 92 >> 93 #endif 38 94 39 #include "INCLXXPhysicsListHelper.hh" << 40 typedef TINCLXXPhysicsListHelper<G4VModularPhy << 41 95 42 #endif // QGSP_INCLXX_h << 43 96 44 97