BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
ExN04IonPhysics.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * DISCLAIMER *
4// * *
5// * The following disclaimer summarizes all the specific disclaimers *
6// * of contributors to this software. The specific disclaimers,which *
7// * govern, are listed with their locations in: *
8// * http://cern.ch/geant4/license *
9// * *
10// * Neither the authors of this software system, nor their employing *
11// * institutes,nor the agencies providing financial support for this *
12// * work make any representation or warranty, express or implied, *
13// * regarding this software system or assume any liability for its *
14// * use. *
15// * *
16// * This code implementation is the intellectual property of the *
17// * GEANT4 collaboration. *
18// * By copying, distributing or modifying the Program (or any work *
19// * based on the Program) you indicate your acceptance of this *
20// * statement, and all its terms. *
21// ********************************************************************
22//
23//
24// $Id: ExN04IonPhysics.hh,v 1.1.1.1 2004/09/28 05:16:53 liwd Exp $
25// GEANT4 tag $Name: G4Svc-00-01-58 $
26//
27//
28// ------------------------------------------------------------
29// GEANT 4 class header file
30// Class Description:
31// This class is an derived class of G4VPhysicsConstructor
32//
33// -------------------------------------------
34// History
35// first version 12 Nov. 2000 by H.Kurashige
36// ------------------------------------------------------------
37#ifndef ExN04IonPhysics_h
38#define ExN04IonPhysics_h 1
39
40#include "G4ios.hh"
41#include "globals.hh"
42
43#include "G4VPhysicsConstructor.hh"
44
45#include "G4HadronElasticProcess.hh"
46#include "G4LElastic.hh"
47
48#include "G4DeuteronInelasticProcess.hh"
49#include "G4LEDeuteronInelastic.hh"
50
51#include "G4LETritonInelastic.hh"
52#include "G4TritonInelasticProcess.hh"
53
54#include "G4AlphaInelasticProcess.hh"
55#include "G4LEAlphaInelastic.hh"
56
57#include "G4MultipleScattering.hh"
58#include "G4hIonisation.hh"
59
60class ExN04IonPhysics : public G4VPhysicsConstructor {
61public:
62 ExN04IonPhysics( const G4String& name = "ion" );
63 virtual ~ExN04IonPhysics();
64
65public:
66 // This method will be invoked in the Construct() method.
67 // each particle type will be instantiated
68 virtual void ConstructParticle();
69
70 // This method will be invoked in the Construct() method.
71 // each physics process will be instantiated and
72 // registered to the process manager of each particle type
73 virtual void ConstructProcess();
74
75protected:
76 // Elastic Process
77 G4HadronElasticProcess theElasticProcess;
78 G4LElastic* theElasticModel;
79
80 // Generic Ion physics
81 G4MultipleScattering fIonMultipleScattering;
82 G4hIonisation fIonIonisation;
83
84 // Deuteron physics
85 G4MultipleScattering fDeuteronMultipleScattering;
86 G4hIonisation fDeuteronIonisation;
87 G4DeuteronInelasticProcess fDeuteronProcess;
88 G4LEDeuteronInelastic* fDeuteronModel;
89
90 // Triton physics
91 G4MultipleScattering fTritonMultipleScattering;
92 G4hIonisation fTritonIonisation;
93 G4TritonInelasticProcess fTritonProcess;
94 G4LETritonInelastic* fTritonModel;
95
96 // Alpha physics
97 G4MultipleScattering fAlphaMultipleScattering;
98 G4hIonisation fAlphaIonisation;
99 G4AlphaInelasticProcess fAlphaProcess;
100 G4LEAlphaInelastic* fAlphaModel;
101
102 // He3 physics
103 G4MultipleScattering fHe3MultipleScattering;
104 G4hIonisation fHe3Ionisation;
105};
106
107#endif
virtual ~ExN04IonPhysics()
G4LEAlphaInelastic * fAlphaModel
G4MultipleScattering fHe3MultipleScattering
G4hIonisation fDeuteronIonisation
G4hIonisation fHe3Ionisation
G4LEDeuteronInelastic * fDeuteronModel
G4AlphaInelasticProcess fAlphaProcess
G4MultipleScattering fAlphaMultipleScattering
G4MultipleScattering fDeuteronMultipleScattering
virtual void ConstructProcess()
G4DeuteronInelasticProcess fDeuteronProcess
G4hIonisation fIonIonisation
G4hIonisation fAlphaIonisation
G4TritonInelasticProcess fTritonProcess
G4LETritonInelastic * fTritonModel
ExN04IonPhysics(const G4String &name="ion")
G4MultipleScattering fTritonMultipleScattering
G4hIonisation fTritonIonisation
G4LElastic * theElasticModel
virtual void ConstructParticle()
G4HadronElasticProcess theElasticProcess
G4MultipleScattering fIonMultipleScattering