source: trunk/examples/advanced/gammaray_telescope/include/GammaRayTelIonPhysics.hh@ 1036

Last change on this file since 1036 was 807, checked in by garnier, 17 years ago

update

File size: 4.1 KB
RevLine 
[807]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// $Id: GammaRayTelIonPhysics.hh,v 1.2 2006/06/29 15:55:38 gunter Exp $
28// GEANT4 tag $Name: $
29//
30//
31// ------------------------------------------------------------
32// GEANT 4 class header file
33// Class Description:
34// This class is an derived class of G4VPhysicsConstructor
35//
36// -------------------------------------------
37// History
38// first version 12 Nov. 2000 by H.Kurashige
39// ------------------------------------------------------------
40#ifndef GammaRayTelIonPhysics_h
41#define GammaRayTelIonPhysics_h 1
42
43#include "globals.hh"
44#include "G4ios.hh"
45
46#include "G4VPhysicsConstructor.hh"
47
48#include "G4HadronElasticProcess.hh"
49#include "G4LElastic.hh"
50
51#include "G4DeuteronInelasticProcess.hh"
52#include "G4LEDeuteronInelastic.hh"
53
54#include "G4TritonInelasticProcess.hh"
55#include "G4LETritonInelastic.hh"
56
57#include "G4AlphaInelasticProcess.hh"
58#include "G4LEAlphaInelastic.hh"
59
60#include "G4hIonisation.hh"
61#include "G4MultipleScattering.hh"
62
63class GammaRayTelIonPhysics : public G4VPhysicsConstructor
64{
65 public:
66 GammaRayTelIonPhysics(const G4String& name="ion");
67 virtual ~GammaRayTelIonPhysics();
68
69 public:
70 // This method will be invoked in the Construct() method.
71 // each particle type will be instantiated
72 virtual void ConstructParticle();
73
74 // This method will be invoked in the Construct() method.
75 // each physics process will be instantiated and
76 // registered to the process manager of each particle type
77 virtual void ConstructProcess();
78
79 protected:
80 // Elastic Process
81 G4HadronElasticProcess theElasticProcess;
82 G4LElastic* theElasticModel;
83
84 // Generic Ion physics
85 G4MultipleScattering fIonMultipleScattering;
86 G4hIonisation fIonIonisation;
87
88 // Deuteron physics
89 G4MultipleScattering fDeuteronMultipleScattering;
90 G4hIonisation fDeuteronIonisation;
91 G4DeuteronInelasticProcess fDeuteronProcess;
92 G4LEDeuteronInelastic* fDeuteronModel;
93
94 // Triton physics
95 G4MultipleScattering fTritonMultipleScattering;
96 G4hIonisation fTritonIonisation;
97 G4TritonInelasticProcess fTritonProcess;
98 G4LETritonInelastic* fTritonModel;
99
100 // Alpha physics
101 G4MultipleScattering fAlphaMultipleScattering;
102 G4hIonisation fAlphaIonisation;
103 G4AlphaInelasticProcess fAlphaProcess;
104 G4LEAlphaInelastic* fAlphaModel;
105
106 // He3 physics
107 G4MultipleScattering fHe3MultipleScattering;
108 G4hIonisation fHe3Ionisation;
109
110};
111
112
113#endif
114
Note: See TracBrowser for help on using the repository browser.