Geant4.10
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
geant4.10.00.p01
source
processes
electromagnetic
highenergy
src
G4hBremsstrahlung.cc
Go to the documentation of this file.
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
// $Id: G4hBremsstrahlung.cc 72943 2013-08-14 13:40:29Z gcosmo $
27
//
28
// -------------------------------------------------------------------
29
//
30
// GEANT4 Class file
31
//
32
//
33
// File name: G4hBremsstrahlung
34
//
35
// Author: Vladimir Ivanchenko on base of model for muons
36
//
37
// Creation date: 01.03.2008
38
//
39
// Modifications:
40
//
41
//
42
// -------------------------------------------------------------------
43
//
44
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
45
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
46
47
#include "
G4hBremsstrahlung.hh
"
48
#include "
G4SystemOfUnits.hh
"
49
#include "
G4hBremsstrahlungModel.hh
"
50
51
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
52
53
using namespace
std;
54
55
G4hBremsstrahlung::G4hBremsstrahlung
(
const
G4String
&
name
)
56
:
G4MuBremsstrahlung
(name)
57
{}
58
59
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
60
61
G4hBremsstrahlung::~G4hBremsstrahlung
()
62
{}
63
64
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
65
66
G4bool
G4hBremsstrahlung::IsApplicable
(
const
G4ParticleDefinition
&
p
)
67
{
68
return
(p.
GetPDGCharge
() != 0.0 && p.
GetPDGMass
() > 110.0*
MeV
);
69
}
70
71
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
72
73
void
G4hBremsstrahlung::InitialiseEnergyLossProcess
(
74
const
G4ParticleDefinition
*,
75
const
G4ParticleDefinition
*)
76
{
77
if
(!
isInitialised
) {
78
79
isInitialised
=
true
;
80
if
(!
EmModel
()) {
SetEmModel
(
new
G4hBremsstrahlungModel
()); }
81
82
G4VEmFluctuationModel
*
fm
= 0;
83
EmModel
()->
SetLowEnergyLimit
(
MinKinEnergy
());
84
EmModel
()->
SetHighEnergyLimit
(
MaxKinEnergy
());
85
AddEmModel
(1,
EmModel
(), fm);
86
}
87
}
88
89
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
90
G4hBremsstrahlung.hh
python.hepunit.MeV
MeV
Definition:
hepunit.py:117
p
const char * p
Definition:
xmltok.h:285
name
const XML_Char * name
Definition:
include/expat.h:151
G4ParticleDefinition
Definition:
G4ParticleDefinition.hh:111
G4hBremsstrahlung::~G4hBremsstrahlung
virtual ~G4hBremsstrahlung()
Definition:
G4hBremsstrahlung.cc:61
G4hBremsstrahlung::IsApplicable
virtual G4bool IsApplicable(const G4ParticleDefinition &p)
Definition:
G4hBremsstrahlung.cc:66
G4VEmModel::SetHighEnergyLimit
void SetHighEnergyLimit(G4double)
Definition:
G4VEmModel.hh:683
G4hBremsstrahlungModel.hh
G4bool
bool G4bool
Definition:
G4Types.hh:79
G4MuBremsstrahlung::isInitialised
G4bool isInitialised
Definition:
G4MuBremsstrahlung.hh:110
G4VEnergyLossProcess::AddEmModel
void AddEmModel(G4int, G4VEmModel *, G4VEmFluctuationModel *fluc=0, const G4Region *region=0)
Definition:
G4VEnergyLossProcess.cc:344
G4MuBremsstrahlung
Definition:
G4MuBremsstrahlung.hh:78
G4hBremsstrahlung::InitialiseEnergyLossProcess
virtual void InitialiseEnergyLossProcess(const G4ParticleDefinition *, const G4ParticleDefinition *)
Definition:
G4hBremsstrahlung.cc:73
G4hBremsstrahlung::G4hBremsstrahlung
G4hBremsstrahlung(const G4String &processName="hBrems")
Definition:
G4hBremsstrahlung.cc:55
fm
#define fm
G4ParticleDefinition::GetPDGMass
G4double GetPDGMass() const
Definition:
G4ParticleDefinition.hh:161
G4VEnergyLossProcess::SetEmModel
void SetEmModel(G4VEmModel *, G4int index=1)
Definition:
G4VEnergyLossProcess.cc:362
G4VEnergyLossProcess::MinKinEnergy
G4double MinKinEnergy() const
Definition:
G4VEnergyLossProcess.hh:1046
G4VEnergyLossProcess::MaxKinEnergy
G4double MaxKinEnergy() const
Definition:
G4VEnergyLossProcess.hh:1061
G4VEmFluctuationModel
Definition:
G4VEmFluctuationModel.hh:68
G4SystemOfUnits.hh
G4VEmModel::SetLowEnergyLimit
void SetLowEnergyLimit(G4double)
Definition:
G4VEmModel.hh:690
G4ParticleDefinition::GetPDGCharge
G4double GetPDGCharge() const
Definition:
G4ParticleDefinition.hh:163
G4hBremsstrahlungModel
Definition:
G4hBremsstrahlungModel.hh:56
G4VEnergyLossProcess::EmModel
G4VEmModel * EmModel(G4int index=1) const
Definition:
G4VEnergyLossProcess.cc:371
G4String
Definition:
examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4String.hh:45
Generated on Wed Apr 30 2014 15:54:48 for Geant4.10 by
1.8.7