Class Reference for E1039 Core & Analysis Software
PHG4SteppingAction.cc
Go to the documentation of this file.
1 
9 #include "PHG4SteppingAction.h"
10 #include "PHG4Hit.h"
11 
12 #include <Geant4/G4Step.hh>
13 #include <Geant4/G4Material.hh>
14 #include <Geant4/G4EmSaturation.hh>
15 #include <Geant4/G4Track.hh>
16 #include <Geant4/G4LossTableManager.hh>
17 #include <Geant4/G4SystemOfUnits.hh>
18 #include <Geant4/G4StepPoint.hh>
19 #include <Geant4/G4TouchableHandle.hh>
20 #include <Geant4/G4ThreeVector.hh>
21 #include <Geant4/G4NavigationHistory.hh>
22 
23 
24 
25 #include <iostream>
26 #include <cassert>
27 
28 using namespace std;
29 
30 double
32 {
33  // pirated from G4Scintillation::PostStepDoIt()
34 
35  double light_yield = 0;
36 
37  const G4Track* aTrack = step->GetTrack();
38  const G4Material* aMaterial = aTrack->GetMaterial();
39  G4MaterialPropertiesTable* aMaterialPropertiesTable =
40  aMaterial->GetMaterialPropertiesTable();
41  if (!aMaterialPropertiesTable)
42  {
43  string mname(aMaterial->GetName());
44 
45  std::set<std::string>::const_iterator it =
46  _ScintLightYieldMissingMaterial.find(mname);
47 
48  if (it == _ScintLightYieldMissingMaterial.end())
49  {
50  _ScintLightYieldMissingMaterial.insert(mname);
51 
52  cout << "PHG4SteppingAction::GetScintLightYield - WARNING - "
53  << "can not find Material Properties Table for material " << mname
54  << ", will assume it do NOT scintillate. "
55  << "Please ignore this warning if you do not expect scintillation light from "
56  << mname << endl;
57  }
58 
59  return 0;
60  }
61 
62  if (aMaterialPropertiesTable->ConstPropertyExists("SCINTILLATIONYIELD"))
63  {
64  light_yield = aMaterialPropertiesTable->GetConstProperty(
65  "SCINTILLATIONYIELD") * GetVisibleEnergyDeposition(step) * GeV;
66 
67  return light_yield;
68  } // if (aMaterialPropertiesTable->ConstPropertyExists("SCINTILLATIONYIELD"))
69  else
70  {
71 
72  string mname(aMaterial->GetName());
73 
74  std::set<std::string>::const_iterator it =
75  _ScintLightYieldMissingMaterial.find(mname);
76 
77  if (it == _ScintLightYieldMissingMaterial.end())
78  {
79  _ScintLightYieldMissingMaterial.insert(mname);
80 
81  cout << "PHG4SteppingAction::GetScintLightYield - WARNING - "
82  << "can not find scintillation light yield for material " << mname
83  << ", will assume it do NOT scintillate. "
84  << "Please ignore this warning if you do not expect scintillation light from "
85  << mname << endl;
86  }
87 
88  return 0;
89  }
90 
91  return light_yield;
92 }
93 
94 double
96 {
97 
98  G4EmSaturation* emSaturation = G4LossTableManager::Instance()->EmSaturation();
99  if (emSaturation)
100  {
101  if (verbosity)
102  {
103  emSaturation->SetVerbose(verbosity);
104  }
105  double visen = emSaturation->VisibleEnergyDeposition(step) / GeV;
106  return visen;
107  }
108  else
109  {
110  cout
111  << "PHG4SteppingAction::GetScintLightYield - ERROR - can NOT initialize G4EmSaturation!"
112  << endl;
113 
114  return 0;
115  }
116 }
117 
118 void
120  const bool do_prepoint, const bool do_postpoint)
121 {
122  assert(hit);
123  assert(aStep);
124 
125  G4StepPoint* preStepPoint = aStep->GetPreStepPoint();
126  G4TouchableHandle theTouchable = preStepPoint->GetTouchableHandle();
127 
128  if (do_prepoint)
129  {
130 
131  G4ThreeVector worldPosition = preStepPoint->GetPosition();
132  G4ThreeVector localPosition =
133  theTouchable->GetHistory()->GetTopTransform().TransformPoint(
134  worldPosition);
135 
136  hit->set_local_x(0, localPosition.x() / cm);
137  hit->set_local_y(0, localPosition.y() / cm);
138  hit->set_local_z(0, localPosition.z() / cm);
139  }
140  if (do_postpoint)
141  {
142  G4StepPoint * postPoint = aStep->GetPostStepPoint();
143 
144  G4ThreeVector worldPosition = postPoint->GetPosition();
145  G4ThreeVector localPosition =
146  theTouchable->GetHistory()->GetTopTransform().TransformPoint(
147  worldPosition);
148 
149  hit->set_local_x(1, localPosition.x() / cm);
150  hit->set_local_y(1, localPosition.y() / cm);
151  hit->set_local_z(1, localPosition.z() / cm);
152  }
153 
154 }
155 
156 bool
157 PHG4SteppingAction::IntOptExist(const std::string &name)
158 {
159  if (opt_int.find(name) != opt_int.end())
160  {
161  return true;
162  }
163  return false;
164 }
165 
166 int
167 PHG4SteppingAction::GetIntOpt(const std::string &name)
168 {
169  if (IntOptExist(name))
170  {
171  return opt_int.find(name)->second;
172  }
173  cout << "option " << name << " does not exist" << endl;
174  exit(1);
175 }
virtual void set_local_y(const int i, const float f)
Definition: PHG4Hit.h:59
virtual void set_local_x(const int i, const float f)
Definition: PHG4Hit.h:58
virtual void set_local_z(const int i, const float f)
Definition: PHG4Hit.h:60
bool IntOptExist(const std::string &name)
virtual double GetVisibleEnergyDeposition(const G4Step *step)
get amount of energy that can make scintillation light, in Unit of GeV.
virtual double GetScintLightYield(const G4Step *step)
get scintillation photon count. It require a custom set SCINTILLATIONYIELD property to work
int GetIntOpt(const std::string &name)
virtual void StoreLocalCoordinate(PHG4Hit *hit, const G4Step *step, const bool do_prepoint, const bool do_postpoint)
Extract local coordinate of the hit and save to PHG4Hit.