Geant4 11.1.1
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
INCLXXPhysicsListHelper.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
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. *
10// * *
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. *
17// * *
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// ********************************************************************
25//
26//
27//---------------------------------------------------------------------------
28//
29// ClassName: INCLXXPhysicsListHelper
30//
31// Author: 04.03.2013 D. Mancusi
32// Created by modifying and generalising the QGSP_INCLXX source files
33//
34//----------------------------------------------------------------------------
35//
36#ifndef TINCLXXPhysicsListHelper_h
37#define TINCLXXPhysicsListHelper_h 1
38
40
41#include "globals.hh"
44#include "G4String.hh"
45
46/**
47 * <h1>Physics list helper INCLXXPhysicsListHelper</h1>
48 *
49 * <h2>Use case</h2>
50 * This class is used to define the following INCLXX-based physics lists:
51 * * QGSP_INCLXX
52 * * QGSP_INCLXX_HP
53 * * FTFP_INCLXX
54 * * FTFP_INCLXX_HP
55 * They are mainly intended for use with energies less than 3 GeV. This is
56 * useful for e.g. spallation studies and Accelerator Driven Systems (ADS)
57 * applications.
58 *
59 * <h2>Usage</h2>
60 * The physics lists above can be activated in a simulation application by
61 * giving it as part of the user initialization to the run manager, e.g.:
62 * @code
63 * G4RunManager *runManager = new G4RunManager;
64 * G4VUserPhysicsList *physics = new QGSP_INCLXX;
65 * runManager->SetUserInitialization(physics);
66 * @endcode
67 *
68 * <h2>Hadronic models</h2>
69 * The list uses INCL++ intra-nuclear cascade model in the energy range 0 - 3
70 * GeV. Between 3 - 15 GeV Bertini cascade is used and above 15 GeV the high
71 * energy QGSP model or FTFP model. The _HP variants use NeutronHP below 20
72 * MeV.
73 *
74 * @see G4HadronPhysicsINCLXX
75 * @see G4INCLXXProtonBuilder
76 * @see G4INCLXXNeutronBuilder
77 * @see G4INCLXXPiKBuilder
78 * @see G4IonINCLXXPhysics
79 */
80template<class T, bool withNeutronHP, bool withFTFP>
82{
83public:
86
87public:
88 // SetCuts()
89 virtual void SetCuts();
90
91private:
93 G4String name;
94};
95
96#include "INCLXXPhysicsListHelper.icc"
101
102// 2013 by D. Mancusi
103
104#endif
105
106
107
int G4int
Definition: G4Types.hh:85
TINCLXXPhysicsListHelper< G4VModularPhysicsList, true, false > QGSP_INCLXX_HP
TINCLXXPhysicsListHelper< G4VModularPhysicsList, true, true > FTFP_INCLXX_HP
TINCLXXPhysicsListHelper< G4VModularPhysicsList, false, false > QGSP_INCLXX
TINCLXXPhysicsListHelper< G4VModularPhysicsList, false, true > FTFP_INCLXX
virtual ~TINCLXXPhysicsListHelper()
virtual void SetCuts()
TINCLXXPhysicsListHelper(G4int ver=1)