BOSS 7.0.8
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-53 $
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 "globals.hh"
41#include "G4ios.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 "G4TritonInelasticProcess.hh"
52#include "G4LETritonInelastic.hh"
53
54#include "G4AlphaInelasticProcess.hh"
55#include "G4LEAlphaInelastic.hh"
56
57#include "G4hIonisation.hh"
58#include "G4MultipleScattering.hh"
59
60class ExN04IonPhysics : public G4VPhysicsConstructor
61{
62 public:
63 ExN04IonPhysics(const G4String& name="ion");
64 virtual ~ExN04IonPhysics();
65
66 public:
67 // This method will be invoked in the Construct() method.
68 // each particle type will be instantiated
69 virtual void ConstructParticle();
70
71 // This method will be invoked in the Construct() method.
72 // each physics process will be instantiated and
73 // registered to the process manager of each particle type
74 virtual void ConstructProcess();
75
76 protected:
77 // Elastic Process
78 G4HadronElasticProcess theElasticProcess;
79 G4LElastic* theElasticModel;
80
81 // Generic Ion physics
82 G4MultipleScattering fIonMultipleScattering;
83 G4hIonisation fIonIonisation;
84
85 // Deuteron physics
86 G4MultipleScattering fDeuteronMultipleScattering;
87 G4hIonisation fDeuteronIonisation;
88 G4DeuteronInelasticProcess fDeuteronProcess;
89 G4LEDeuteronInelastic* fDeuteronModel;
90
91 // Triton physics
92 G4MultipleScattering fTritonMultipleScattering;
93 G4hIonisation fTritonIonisation;
94 G4TritonInelasticProcess fTritonProcess;
95 G4LETritonInelastic* fTritonModel;
96
97 // Alpha physics
98 G4MultipleScattering fAlphaMultipleScattering;
99 G4hIonisation fAlphaIonisation;
100 G4AlphaInelasticProcess fAlphaProcess;
101 G4LEAlphaInelastic* fAlphaModel;
102
103 // He3 physics
104 G4MultipleScattering fHe3MultipleScattering;
105 G4hIonisation fHe3Ionisation;
106
107};
108
109
110#endif
111
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
G4MultipleScattering fTritonMultipleScattering
G4hIonisation fTritonIonisation
G4LElastic * theElasticModel
virtual void ConstructParticle()
G4HadronElasticProcess theElasticProcess
G4MultipleScattering fIonMultipleScattering