Geant4-11
G4eMultipleScattering.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//
27// -----------------------------------------------------------------------------
28//
29// GEANT4 Class file
30//
31// File name: G4eMultipleScattering
32//
33// Author: Vladimir Ivanchenko
34//
35// Creation date: 10 March 2008
36//
37// Modifications:
38//
39// -----------------------------------------------------------------------------
40//
41//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
42//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
43
45#include "G4UrbanMscModel.hh"
46#include "G4MscStepLimitType.hh"
47#include "G4Electron.hh"
48#include "G4Positron.hh"
49
50//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
51
52using namespace std;
53
55 : G4VMultipleScattering(processName)
56{
57 isInitialized = false;
58}
59
60//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
61
63{}
64
65//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
66
68{
69 return (p.GetPDGCharge() != 0.0);
70}
71
72//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
73
75{
76 if(isInitialized) { return; }
77 if(nullptr == EmModel(0)) { SetEmModel(new G4UrbanMscModel()); }
78 AddEmModel(1, EmModel(0));
79 if(nullptr != EmModel(1)) { AddEmModel(1, EmModel(1)); }
80 isInitialized = true;
81}
82
83//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
84
85void G4eMultipleScattering::StreamProcessInfo(std::ostream& out) const
86{
87 out << " RangeFactor= " << RangeFactor()
88 << ", stepLimType: " << StepLimitType()
89 << ", latDisp: " << LateralDisplasmentFlag();
91 out << ", skin= " << Skin() << ", geomFactor= " << GeomFactor();
92 }
93 out << G4endl;
94}
95
96//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
97
98void G4eMultipleScattering::ProcessDescription(std::ostream& out) const
99{
100 out <<
101 " Multiple scattering. Simulates combined effects of elastic scattering\n"<<
102 " at the end of the step, to save computing time. May be combined with\n"<<
103 " Coulomb scattering in a 'mixed' scattering algorithm.";
105}
106
107//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
@ fUseDistanceToBoundary
bool G4bool
Definition: G4Types.hh:86
#define G4endl
Definition: G4ios.hh:57
G4double GetPDGCharge() const
void AddEmModel(G4int order, G4VEmModel *, const G4Region *region=nullptr)
void ProcessDescription(std::ostream &outFile) const override
void SetEmModel(G4VMscModel *, G4int idx=0)
G4bool LateralDisplasmentFlag() const
G4MscStepLimitType StepLimitType() const
G4VMscModel * EmModel(size_t index=0) const
void ProcessDescription(std::ostream &) const override
G4eMultipleScattering(const G4String &processName="msc")
G4bool IsApplicable(const G4ParticleDefinition &p) final
void InitialiseProcess(const G4ParticleDefinition *) override
void StreamProcessInfo(std::ostream &outFile) const override