// // ******************************************************************** // * 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. * // ******************************************************************** // // $Id: QGSP_INCL_ABLA.hh,v 1.1 2009/07/19 18:24:03 kaitanie Exp $ // GEANT4 tag $Name: geant4-09-03-cand-03 $ // //--------------------------------------------------------------------------- // // ClassName: QGSP_INCL_ABLA // // Author: 2002 J.P. Wellisch // // Modified: // //---------------------------------------------------------------------------- // #ifndef TQGSP_INCL_ABLA_h #define TQGSP_INCL_ABLA_h 1 #include "G4VModularPhysicsList.hh" #include "globals.hh" #include "CompileTimeConstraints.hh" /** *

Physics list QGSP_INCL_ABLA

* *

Use case

* This list is mainly intended for use with energies less than 3 * GeV. This is useful for e.g. spallation studies and Accelerator * Driven Systems (ADS) applications. * *

Usage

* The physics list can be activated in a simulation application by * giving it as part of the user initialization to the run manager: * @code * G4RunManager *runManager = new G4RunManager; * G4VUserPhysicsList *physics = new QGSP_INCL_ABLA; * runManager->SetUserInitialization(physics); * @endcode * *

Hadronic models

* The list uses INCL/ABLA intra-nuclear cascade and de-excitation * models in the energy range 0 - 3 GeV. Between 3 - 15 GeV Bertini * cascade is used and above 15 GeV the high energy QGSP model. * * @see HadronPhysicsQGSP_INCL_ABLA * @see G4InclAblaProtonBuilder * @see G4InclAblaNeutronBuilder * @see G4InclAblaPiKBuilder */ template class TQGSP_INCL_ABLA: public T { public: TQGSP_INCL_ABLA(G4int ver = 1); virtual ~TQGSP_INCL_ABLA(); public: // SetCuts() virtual void SetCuts(); private: enum {ok = CompileTimeConstraints::IsA::ok }; }; #include "QGSP_INCL_ABLA.icc" typedef TQGSP_INCL_ABLA QGSP_INCL_ABLA; // 2002 by J.P. Wellisch #endif