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>
35 double light_yield = 0;
37 const G4Track* aTrack = step->GetTrack();
38 const G4Material* aMaterial = aTrack->GetMaterial();
39 G4MaterialPropertiesTable* aMaterialPropertiesTable =
40 aMaterial->GetMaterialPropertiesTable();
41 if (!aMaterialPropertiesTable)
43 string mname(aMaterial->GetName());
45 std::set<std::string>::const_iterator it =
46 _ScintLightYieldMissingMaterial.find(mname);
48 if (it == _ScintLightYieldMissingMaterial.end())
50 _ScintLightYieldMissingMaterial.insert(mname);
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 "
62 if (aMaterialPropertiesTable->ConstPropertyExists(
"SCINTILLATIONYIELD"))
64 light_yield = aMaterialPropertiesTable->GetConstProperty(
65 "SCINTILLATIONYIELD") * GetVisibleEnergyDeposition(step) * GeV;
72 string mname(aMaterial->GetName());
74 std::set<std::string>::const_iterator it =
75 _ScintLightYieldMissingMaterial.find(mname);
77 if (it == _ScintLightYieldMissingMaterial.end())
79 _ScintLightYieldMissingMaterial.insert(mname);
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 "
98 G4EmSaturation* emSaturation = G4LossTableManager::Instance()->EmSaturation();
103 emSaturation->SetVerbose(verbosity);
105 double visen = emSaturation->VisibleEnergyDeposition(step) / GeV;
111 <<
"PHG4SteppingAction::GetScintLightYield - ERROR - can NOT initialize G4EmSaturation!"
120 const bool do_prepoint,
const bool do_postpoint)
125 G4StepPoint* preStepPoint = aStep->GetPreStepPoint();
126 G4TouchableHandle theTouchable = preStepPoint->GetTouchableHandle();
131 G4ThreeVector worldPosition = preStepPoint->GetPosition();
132 G4ThreeVector localPosition =
133 theTouchable->GetHistory()->GetTopTransform().TransformPoint(
142 G4StepPoint * postPoint = aStep->GetPostStepPoint();
144 G4ThreeVector worldPosition = postPoint->GetPosition();
145 G4ThreeVector localPosition =
146 theTouchable->GetHistory()->GetTopTransform().TransformPoint(
159 if (opt_int.find(name) != opt_int.end())
169 if (IntOptExist(name))
171 return opt_int.find(name)->second;
173 cout <<
"option " << name <<
" does not exist" << endl;
virtual void set_local_y(const int i, const float f)
virtual void set_local_x(const int i, const float f)
virtual void set_local_z(const int i, const float f)
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.