Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4AdjointhMultipleScattering.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: G4AdjointhMultipleScattering.cc 90259 2015-05-22 08:57:37Z gcosmo $
27 //
28 
29 //
30 // GEANT4 Class file
31 //
32 // File name: G4AdjointhMultipleScattering
33 //
34 // Author: Desorgher Laurent
35 //
36 // Creation date: 03.06.2009 cloned from G4hMultipleScattering by U.Laszlo with slight modification for adjoint_ion.
37 //
38 // -----------------------------------------------------------------------------
39 //
40 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
41 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
42 
44 #include "G4SystemOfUnits.hh"
45 #include "G4UrbanMscModel.hh"
46 #include "G4MscStepLimitType.hh"
47 
48 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
49 
50 using namespace std;
51 
53  : G4VMultipleScattering(processName)
54 {
55  isInitialized = false;
56 }
57 
58 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
59 
61 {}
62 
63 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
64 
66 {
67  return (p.GetPDGCharge() != 0.0 && !p.IsShortLived());
68 }
69 
70 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
71 
73 {
74  if(isInitialized) { return; }
75  AddEmModel(1, new G4UrbanMscModel());
76  isInitialized = true;
77 }
78 
79 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
80 
82 {
83  G4cout << " RangeFactor= " << RangeFactor()
84  << ", step limit type: " << StepLimitType()
85  << ", lateralDisplacement: " << LateralDisplasmentFlag()
86  << ", skin= " << Skin()
87  << G4endl;
88 }
89 
90 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
91 
92 /*G4double G4AdjointhMultipleScattering::AlongStepGetPhysicalInteractionLength(
93  const G4Track& track,
94  double,
95  G4double currentMinimalStep,
96  G4double& currentSafety,
97  G4GPILSelection* selection)
98 {
99  // get Step limit proposed by the process
100  valueGPILSelectionMSC = NotCandidateForSelection;
101 
102  G4double escaled = track.GetKineticEnergy();
103  if(isIon) escaled *= track.GetDynamicParticle()->GetMass()/proton_mass_c2;
104 
105  G4double steplength = GetMscContinuousStepLimit(track,
106  escaled,
107  currentMinimalStep,
108  currentSafety);
109  // G4cout << "StepLimit= " << steplength << G4endl;
110  // set return value for G4GPILSelection
111  *selection = valueGPILSelectionMSC;
112  return steplength;
113 }
114 */
115 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
void InitialiseProcess(const G4ParticleDefinition *)
const char * p
Definition: xmltok.h:285
G4bool IsApplicable(const G4ParticleDefinition &p)
G4MscStepLimitType StepLimitType() const
G4GLOB_DLL std::ostream G4cout
bool G4bool
Definition: G4Types.hh:79
G4AdjointhMultipleScattering(const G4String &processName="msc")
G4bool LateralDisplasmentFlag() const
void AddEmModel(G4int order, G4VEmModel *, const G4Region *region=nullptr)
#define G4endl
Definition: G4ios.hh:61
G4double GetPDGCharge() const