source: trunk/source/processes/electromagnetic/xrays/include/G4ForwardXrayTR.hh@ 1315

Last change on this file since 1315 was 1228, checked in by garnier, 16 years ago

update geant4.9.3 tag

File size: 7.4 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//
27// $Id: G4ForwardXrayTR.hh,v 1.14 2006/06/29 19:55:33 gunter Exp $
[1228]28// GEANT4 tag $Name: geant4-09-03 $
[819]29//
30// G4ForwardXrayTR -- header file
31//
32// Class for description of forward X-ray transition radiation generated
33// by relativistic charged particle crossed interface between material 1
34// and material 2 (1 -> 2)
35//
36// GEANT 4 class header file --- Copyright CERN 1995
37// CERB Geneva Switzerland
38//
39// for information related to this code, please, contact
40// CERN, CN Division, ASD Group
41// History:
42// 22.09.97, V. Grichine (Vladimir.Grichine@cern.ch)
43// 26.01.00, V.Grichine, new constructor and protected DM for fast sim. models
44// 10.03.03, V.Ivanchenko migrade to "cut per region"
45// 03.06.03, V.Ivanchenko fix compilation warnings
46
47#ifndef G4FORWARDXRAYTR_H
48#define G4FORWARDXRAYTR_H
49
50
51#include "globals.hh"
52#include "templates.hh"
53#include "geomdefs.hh"
54#include "Randomize.hh"
55#include "G4Step.hh"
56#include "G4VDiscreteProcess.hh"
57#include "G4DynamicParticle.hh"
58#include "G4Material.hh"
59#include "G4LogicalBorderSurface.hh"
60#include "G4LogicalSkinSurface.hh"
61#include "G4OpticalSurface.hh"
62#include "G4OpticalPhoton.hh"
63#include "G4TransportationManager.hh"
64
65#include "G4TransitionRadiation.hh"
66#include "G4PhysicsTable.hh"
67#include "G4Gamma.hh"
68#include "G4PhysicsLogVector.hh"
69
70class G4ForwardXrayTR : public G4TransitionRadiation
71{
72public:
73
74// Constructors
75
76 // G4ForwardXrayTR() ;
77
78
79 G4ForwardXrayTR( const G4String& matName1, // G4Material* pMat1,
80 const G4String& matName2, // G4Material* pMat2,
81 const G4String& processName="XrayTR" ) ;
82
83 G4ForwardXrayTR( const G4String& processName="XrayTR" ) ;
84
85// G4ForwardXrayTR(const G4ForwardXrayTR& right) ;
86
87// Destructor // virtual
88
89 ~G4ForwardXrayTR() ;
90
91// Operators
92// G4ForwardXrayTR& operator=(const G4ForwardXrayTR& right) ;
93// G4int operator==(const G4ForwardXrayTR& right)const ;
94// G4int operator!=(const G4ForwardXrayTR& right)const ;
95
96/////////////////////// Methods /////////////////////////////////
97
98 void BuildXrayTRtables();
99
100 G4double GetMeanFreePath(const G4Track&,
101 G4double,
102 G4ForceCondition* condition)
103 {
104 *condition = Forced;
105 return DBL_MAX; // so TR doesn't limit mean free path
106 }
107
108 G4VParticleChange* PostStepDoIt( const G4Track& aTrack,
109 const G4Step& aStep ) ;
110
111 G4double GetEnergyTR(G4int iMat, G4int jMat, G4int iTkin) const ;
112
113 G4double GetThetaTR(G4int iMat, G4int jMat, G4int iTkin) const ;
114
115
116///////////////////// Angle distribution /////////////////////////////
117//
118
119G4double SpectralAngleTRdensity( G4double energy,
120 G4double varAngle ) const;
121
122
123G4double AngleDensity( G4double energy,
124 G4double varAngle ) const ;
125
126G4double EnergyInterval( G4double energy1,
127 G4double energy2,
128 G4double varAngle ) const ;
129
130G4double AngleSum( G4double varAngle1,
131 G4double varAngle2 ) const ;
132
133///////////////////////// Energy distribution ///////////////////////////////
134
135G4double SpectralDensity( G4double energy,
136 G4double x ) const ;
137
138G4double AngleInterval( G4double energy,
139 G4double varAngle1,
140 G4double varAngle2 ) const ;
141
142G4double EnergySum( G4double energy1,
143 G4double energy2 ) const ;
144
145
146/////////////////////////// Access functions ////////////////////////////
147
148 G4PhysicsTable* GetAngleDistrTable() { return fAngleDistrTable ; } ;
149 G4PhysicsTable* GetEnergyDistrTable() { return fEnergyDistrTable ; } ;
150
151 static G4int GetSympsonNumber() { return fSympsonNumber ; } ;
152 static G4int GetBinTR() { return fBinTR ; } ;
153
154 static G4double GetMinProtonTkin() { return fMinProtonTkin ; } ;
155 static G4double GetMaxProtonTkin() { return fMaxProtonTkin ; } ;
156 static G4int GetTotBin() { return fTotBin ; } ;
157
158
159protected : // for access from X-ray TR fast simulation models
160
161 // private : /////////////// Data members ///////////////////////////
162
163G4ParticleDefinition* fPtrGamma ; // pointer to TR photon
164
165const std::vector<G4double>* fGammaCutInKineticEnergy ;
166 // TR photon cut in energy array
167G4double fGammaTkinCut ; // Tkin cut of TR photon in current mat.
168
169G4PhysicsTable* fAngleDistrTable ;
170G4PhysicsTable* fEnergyDistrTable ;
171
172static G4PhysicsLogVector* fProtonEnergyVector ;
173
174static G4int fSympsonNumber ; // Accuracy of Sympson integration
175
176static G4double fTheMinEnergyTR ; // static min TR energy
177static G4double fTheMaxEnergyTR ; // static max TR energy
178 G4double fMinEnergyTR ; // min TR energy in material
179 G4double fMaxEnergyTR ; // max TR energy in material
180static G4double fTheMaxAngle ; // max theta of TR quanta
181static G4double fTheMinAngle ; // max theta of TR quanta
182 G4double fMaxThetaTR ; // max theta of TR quanta
183static G4int fBinTR ; // number of bins in TR vectors
184
185static G4double fMinProtonTkin ; // min Tkin of proton in tables
186static G4double fMaxProtonTkin ; // max Tkin of proton in tables
187static G4int fTotBin ; // number of bins in log scale
188 G4double fGamma ; // current Lorentz factor
189
190static G4double fPlasmaCof ; // physical consts for plasma energy
191static G4double fCofTR ;
192
193G4double fSigma1 ; // plasma energy Sq of matter1
194G4double fSigma2 ; // plasma energy Sq of matter2
195
196
197} ; // end of G4ForwardXrayTR class ---------------------------
198
199
200
201
202#endif // G4FORWARDXRAYTR_H
203
204
205
Note: See TracBrowser for help on using the repository browser.