ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4OpAbsorption.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4OpAbsorption.cc
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 //
29 // Optical Photon Absorption Class Implementation
31 //
32 // File: G4OpAbsorption.cc
33 // Description: Discrete Process -- Absorption of Optical Photons
34 // Version: 1.0
35 // Created: 1996-05-21
36 // Author: Juliet Armstrong
37 // Updated: 2005-07-28 - add G4ProcessType to constructor
38 // 2000-09-18 by Peter Gumplinger
39 // > comment out warning - "No Absorption length specified"
40 // 1997-04-09 by Peter Gumplinger
41 // > new physics/tracking scheme
42 // 1998-08-25 by Stefano Magni
43 // > Change process to use G4MaterialPropertiesTables
44 // 1998-09-03 by Peter Gumplinger
45 // > Protect G4MaterialPropertyVector* AttenuationLengthVector
46 // mail: gum@triumf.ca
47 // magni@mi.infn.it
48 //
50 
51 #include "G4ios.hh"
52 #include "G4OpProcessSubType.hh"
53 
54 #include "G4OpAbsorption.hh"
55 
56 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
57 
59  : G4VDiscreteProcess(processName, type)
60 {
61  if (verboseLevel >0 ) {
62  G4cout << GetProcessName() << " is created " << G4endl;
63  }
64 
66 }
67 
68 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
69 
71 {}
72 
73 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
74 
76 G4OpAbsorption::PostStepDoIt(const G4Track& aTrack, const G4Step& aStep)
77 {
79 
80  const G4DynamicParticle* aParticle = aTrack.GetDynamicParticle();
81  G4double thePhotonMomentum = aParticle->GetTotalMomentum();
82 
83  aParticleChange.ProposeLocalEnergyDeposit(thePhotonMomentum);
84 
86 
87  if (verboseLevel>0) {
88  G4cout << "\n** Photon absorbed! **" << G4endl;
89  }
90  return G4VDiscreteProcess::PostStepDoIt(aTrack, aStep);
91 }
92 
93 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
94 
96  G4double,
98 {
99  const G4DynamicParticle* aParticle = aTrack.GetDynamicParticle();
100  const G4Material* aMaterial = aTrack.GetMaterial();
101 
102  G4double thePhotonMomentum = aParticle->GetTotalMomentum();
103 
104  G4MaterialPropertiesTable* aMaterialPropertyTable;
105  G4MaterialPropertyVector* AttenuationLengthVector;
106 
107  G4double AttenuationLength = DBL_MAX;
108 
109  aMaterialPropertyTable = aMaterial->GetMaterialPropertiesTable();
110 
111  if (aMaterialPropertyTable) {
112  AttenuationLengthVector = aMaterialPropertyTable->GetProperty(kABSLENGTH);
113  if (AttenuationLengthVector) {
114  AttenuationLength = AttenuationLengthVector->Value(thePhotonMomentum);
115  }
116  // else {
117  // G4cout << "No Absorption length specified" << G4endl;
118  // }
119  }
120  // else {
121  // G4cout << "No Absorption length specified" << G4endl;
122  // }
123 
124  return AttenuationLength;
125 }