source: trunk/source/processes/electromagnetic/lowenergy/include/G4LowEnergyPolarizedCompton.hh@ 1141

Last change on this file since 1141 was 1055, checked in by garnier, 17 years ago

maj sur la beta de geant 4.9.3

File size: 5.1 KB
RevLine 
[819]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//
[961]27// $Id: G4LowEnergyPolarizedCompton.hh,v 1.10 2008/05/02 13:04:41 flongo Exp $
[1055]28// GEANT4 tag $Name: geant4-09-03-beta-cand-00 $
[819]29//
30// ------------------------------------------------------------
31// GEANT 4 class header file
32// CERN Geneva Switzerland
33//
34
35// --------- G4LowEnergyPolarizedCompton class -----
36//
37// by G.Depaola & F.Longo (21 may 2001)
38// 24 May 2001 - MGP Modified to inherit from G4VDiscreteProcess
39// 25 May 2001 - MGP Added protections to avoid crashes
40//
41// 17 October 2001 - F.Longo Major revision according to design iteration
42//
43// 21 February 2002 - F.Longo Revisions with A.Zoglauer and G.Depaola
44// - better description of parallelism
45// - system of ref change method improved
46//
47//
48// Class description:
49// Low Energy electromagnetic process, Polarised Compton scattering
50// Further documentation available from http://www.ge.infn.it/geant4/lowE
51
52// ------------------------------------------------------------
53
54#ifndef G4LOWENERGYPOLARIZEDCOMPTON_H
55#define G4LOWENERGYPOLARIZEDCOMPTON_H 1
56
57#include "globals.hh"
58#include "G4VDiscreteProcess.hh"
59
[961]60// Doppler Broadening
61
62#include "G4ShellData.hh"
63#include "G4DopplerProfile.hh"
64
65
[819]66class G4Track;
67class G4Step;
68class G4ParticleDefinition;
69class G4VParticleChange;
70class G4VEMDataSet;
71class G4VCrossSectionHandler;
72class G4VRangeTest;
73
74class G4LowEnergyPolarizedCompton : public G4VDiscreteProcess
75{
76public:
77
78 G4LowEnergyPolarizedCompton(const G4String& processName = "polarLowEnCompt");
79
80 ~G4LowEnergyPolarizedCompton();
81
82 G4bool IsApplicable(const G4ParticleDefinition& definition);
83
84 void BuildPhysicsTable(const G4ParticleDefinition& photon);
85 G4VParticleChange* PostStepDoIt(const G4Track& aTrack, const G4Step& aStep);
86
87
88 // For testing purpose only
89 G4double DumpMeanFreePath(const G4Track& aTrack,
90 G4double previousStepSize,
91 G4ForceCondition* condition)
92 { return GetMeanFreePath(aTrack, previousStepSize, condition); }
93
94
95protected:
96
97 G4double GetMeanFreePath(const G4Track& aTrack,
98 G4double previousStepSize,
99 G4ForceCondition* condition);
100private:
101
102 // Hide copy constructor and assignment operator as private
103
104 G4LowEnergyPolarizedCompton& operator=(const G4LowEnergyPolarizedCompton&
105 right);
106 G4LowEnergyPolarizedCompton(const G4LowEnergyPolarizedCompton& );
107
108 G4double lowEnergyLimit; // low energy limit applied to the process
109 G4double highEnergyLimit; // high energy limit applied to the process
110
111 G4VEMDataSet* meanFreePathTable;
112 G4VEMDataSet* scatterFunctionData;
113
114 G4VCrossSectionHandler* crossSectionHandler;
115 G4VRangeTest* rangeTest;
116
117 const G4double intrinsicLowEnergyLimit; // intrinsic validity range
118 const G4double intrinsicHighEnergyLimit;
119
120 // specific methods for polarization
121
122 G4ThreeVector GetRandomPolarization(G4ThreeVector& direction0); // Random Polarization
123 G4ThreeVector GetPerpendicularPolarization(const G4ThreeVector& direction0, const G4ThreeVector& polarization0) const;
124
125 G4ThreeVector SetPerpendicularVector(G4ThreeVector& a); // temporary
126 G4ThreeVector SetNewPolarization(G4double epsilon, G4double sinSqrTheta,
127 G4double phi, G4double cosTheta);
128 G4double SetPhi(G4double, G4double);
129
130 void SystemOfRefChange(G4ThreeVector& direction0, G4ThreeVector& direction1,
131 G4ThreeVector& polarization0, G4ThreeVector& polarization1);
132
[961]133 // Doppler Broadening
134
135 G4ShellData shellData;
136 G4DopplerProfile profileData;
137
138
[819]139};
140
141#endif
142
143
144
145
146
147
148
149
150
Note: See TracBrowser for help on using the repository browser.