Geant4
9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
HadronPhysicsQGSC_CHIPS.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
// $Id$
27
//
28
//---------------------------------------------------------------------------
29
//
30
// ClassName: HadronPhysicsQGSC_CHIPS
31
//
32
// Author: 2009 M. Kosov
33
//
34
// Modified:
35
//
36
//----------------------------------------------------------------------------
37
// Short description: In fact this is the definition of the Hadronic Inelastic
38
// physics. The definition of the Hadronic Elastic physics one can find in the
39
// G4HadronQElasticPhysics, which is stable (the same for all physics lists).
40
// The only "unstable" part of the physics is the Hadronic Inelastic physics,
41
// which is usually composed of the wixing of the High Energy Inelastic Model
42
// (HEIM) and the Low Energy Inelastic Model (LEIM), which are applied only for
43
// some hadrons (mostly nucleons and pi-mesons), above the LHEP model, which
44
// usually covers all particles (but for Sigma_0 ?) and sometimes covers the
45
// "hole" between the LEIM and HIME at intermediate energies. The name of the
46
// Physics list is usually have a form HEIM_LEIM and the inelastic interactions
47
// are defined in the HadronicPhysicsHEIM_LEIM class. So in this particular
48
// physics list the low energy model is CHIPS (G4QCollision process) and the
49
// high energy model is QGSC (QGS with the Energy Flow interface to CHIPS),
50
// which are in terms of the energy boundary are mixed not on the model level,
51
// but on the process level (G4DiscProcessMixer class). The LHEP is completely
52
// excluded from this physics list, because the MiscLHEP is substituted by the
53
// MiscQGSC class (QGS with the Energy Flow interface to CHIPS), covering all
54
// particles, which are not N, pi, or K, defined by the separate builders.
55
//---------------------------------------------------------------------------
56
57
#ifndef HadronPhysicsQGSC_CHIPS_h
58
#define HadronPhysicsQGSC_CHIPS_h 1
59
60
#include "
globals.hh
"
61
#include "
G4ios.hh
"
62
63
#include "
G4VPhysicsConstructor.hh
"
64
#include "
G4MiscQGSCBuilder.hh
"
65
66
#include "
G4PiKBuilder.hh
"
67
#include "
G4QGSC_CHIPSPiKBuilder.hh
"
68
69
#include "
G4QProtonBuilder.hh
"
70
#include "
G4QGSC_CHIPSProtonBuilder.hh
"
71
72
#include "
G4QNeutronBuilder.hh
"
73
#include "
G4QGSC_CHIPSNeutronBuilder.hh
"
74
75
class
HadronPhysicsQGSC_CHIPS
:
public
G4VPhysicsConstructor
76
{
77
public
:
78
HadronPhysicsQGSC_CHIPS
(
G4int
verbose =1);
79
HadronPhysicsQGSC_CHIPS
(
const
G4String
& name,
G4bool
quasiElastic=
true
);
80
virtual
~HadronPhysicsQGSC_CHIPS
();
81
82
public
:
83
virtual
void
ConstructParticle
();
84
virtual
void
ConstructProcess
();
85
86
private
:
87
void
CreateModels();
88
89
G4QNeutronBuilder
* theNeut;
90
G4QGSC_CHIPSNeutronBuilder
* theQGSCNeut;
91
92
G4PiKBuilder
* thePiK;
93
G4QGSC_CHIPSPiKBuilder
* theQGSCPiK;
94
95
G4QProtonBuilder
* theProt;
96
G4QGSC_CHIPSProtonBuilder
* theQGSCProt;
97
98
G4MiscQGSCBuilder
* theMiscQGSC;
99
100
G4bool
QuasiElastic;
101
};
102
103
#endif
104
G4MiscQGSCBuilder.hh
G4PiKBuilder.hh
G4QGSC_CHIPSNeutronBuilder.hh
G4QGSC_CHIPSPiKBuilder.hh
G4QGSC_CHIPSProtonBuilder.hh
G4QNeutronBuilder.hh
G4QProtonBuilder.hh
G4int
int G4int
Definition:
G4Types.hh:66
G4bool
bool G4bool
Definition:
G4Types.hh:67
G4VPhysicsConstructor.hh
G4ios.hh
G4MiscQGSCBuilder
Definition:
G4MiscQGSCBuilder.hh:66
G4PiKBuilder
Definition:
G4PiKBuilder.hh:51
G4QGSC_CHIPSNeutronBuilder
Definition:
G4QGSC_CHIPSNeutronBuilder.hh:49
G4QGSC_CHIPSPiKBuilder
Definition:
G4QGSC_CHIPSPiKBuilder.hh:48
G4QGSC_CHIPSProtonBuilder
Definition:
G4QGSC_CHIPSProtonBuilder.hh:49
G4QNeutronBuilder
Definition:
G4QNeutronBuilder.hh:56
G4QProtonBuilder
Definition:
G4QProtonBuilder.hh:56
G4String
Definition:
G4String.hh:105
G4VPhysicsConstructor
Definition:
G4VPhysicsConstructor.hh:69
HadronPhysicsQGSC_CHIPS
Definition:
HadronPhysicsQGSC_CHIPS.hh:76
HadronPhysicsQGSC_CHIPS::ConstructParticle
virtual void ConstructParticle()
Definition:
HadronPhysicsQGSC_CHIPS.cc:130
HadronPhysicsQGSC_CHIPS::~HadronPhysicsQGSC_CHIPS
virtual ~HadronPhysicsQGSC_CHIPS()
Definition:
HadronPhysicsQGSC_CHIPS.cc:116
HadronPhysicsQGSC_CHIPS::ConstructProcess
virtual void ConstructProcess()
Definition:
HadronPhysicsQGSC_CHIPS.cc:143
globals.hh
geant4-v9.6.0
source
physics_lists
lists
include
HadronPhysicsQGSC_CHIPS.hh
Generated by
1.9.6