5 #include <phparameter/PHParameters.h>
16 #include <Geant4/G4Step.hh>
17 #include <Geant4/G4SystemOfUnits.hh>
18 #include <Geant4/G4UserLimits.hh>
32 , savevolpost(nullptr)
33 , save_light_yield(params->get_int_param(
"lightyield"))
35 , saveprestepstatus(-1)
36 , savepoststepstatus(-1)
37 , active(params->get_int_param(
"active"))
38 , IsBlackHole(params->get_int_param(
"blackhole"))
39 , use_g4_steps(params->get_int_param(
"use_g4steps"))
40 , zmin(params->get_double_param(
"place_z") * cm - params->get_double_param(
"length") * cm / 2.)
41 , zmax(params->get_double_param(
"place_z") * cm + params->get_double_param(
"length") * cm / 2.)
42 , tmin(params->get_double_param(
"tmin") * ns)
43 , tmax(params->get_double_param(
"tmax") * ns)
46 zmin -= copysign(zmin, 1. / 1e6 * cm);
47 zmax += copysign(zmax, 1. / 1e6 * cm);
63 G4TouchableHandle touch = aStep->GetPreStepPoint()->GetTouchableHandle();
64 G4TouchableHandle touchpost = aStep->GetPostStepPoint()->GetTouchableHandle();
66 G4VPhysicalVolume* volume = touch->GetVolume();
75 G4double edep = aStep->GetTotalEnergyDeposit() / GeV;
77 const G4Track* aTrack = aStep->GetTrack();
82 if ((!isfinite(tmin) && !isfinite(tmax)) ||
83 aTrack->GetGlobalTime() < tmin ||
84 aTrack->GetGlobalTime() > tmax)
86 edep = aTrack->GetKineticEnergy() / GeV;
87 G4Track* killtrack =
const_cast<G4Track*
>(aTrack);
88 killtrack->SetTrackStatus(fStopAndKill);
96 bool geantino =
false;
100 if (aTrack->GetParticleDefinition()->GetPDGEncoding() == 0 &&
101 aTrack->GetParticleDefinition()->GetParticleName().find(
"geantino") != string::npos)
105 G4StepPoint* prePoint = aStep->GetPreStepPoint();
106 G4StepPoint* postPoint = aStep->GetPostStepPoint();
112 int prepointstatus = prePoint->GetStepStatus();
113 if (prepointstatus == fGeomBoundary ||
114 prepointstatus == fUndefined ||
115 (prepointstatus == fPostStepDoItProc && savepoststepstatus == fGeomBoundary) ||
118 if (prepointstatus == fPostStepDoItProc && savepoststepstatus == fGeomBoundary)
120 cout <<
GetName() <<
": New Hit for " << endl;
125 cout <<
"last track: " << savetrackid
126 <<
", current trackid: " << aTrack->GetTrackID() << endl;
127 cout <<
"phys pre vol: " << volume->GetName()
128 <<
" post vol : " << touchpost->GetVolume()->GetName() << endl;
129 cout <<
" previous phys pre vol: " << savevolpre->GetName()
130 <<
" previous phys post vol: " << savevolpost->GetName() << endl;
141 hit->
set_x(0, prePoint->GetPosition().x() / cm);
142 hit->
set_y(0, prePoint->GetPosition().y() / cm);
143 hit->
set_z(0, prePoint->GetPosition().z() / cm);
145 hit->
set_px(0, prePoint->GetMomentum().x() / GeV);
146 hit->
set_py(0, prePoint->GetMomentum().y() / GeV);
147 hit->
set_pz(0, prePoint->GetMomentum().z() / GeV);
150 hit->
set_t(0, prePoint->GetGlobalTime() / nanosecond);
153 savetrackid = aTrack->GetTrackID();
156 if (!geantino && !IsBlackHole)
160 if (save_light_yield)
164 if (G4VUserTrackInformation* p = aTrack->GetUserInformation())
170 saveshower = pp->GetShower();
174 if (hit->
get_z(0) * cm > zmax || hit->
get_z(0) * cm < zmin)
177 <<
"PHG4PolyconSteppingAction: Entry hit z " << hit->
get_z(0) * cm
178 <<
" outside acceptance, zmin " << zmin
179 <<
", zmax " << zmax <<
", layer: " << layer_id << endl;
187 if (!hit || !isfinite(hit->
get_x(0)))
189 cout <<
GetName() <<
": hit was not created" << endl;
194 cout <<
"last track: " << savetrackid
195 <<
", current trackid: " << aTrack->GetTrackID() << endl;
196 cout <<
"phys pre vol: " << volume->GetName()
197 <<
" post vol : " << touchpost->GetVolume()->GetName() << endl;
198 cout <<
" previous phys pre vol: " << savevolpre->GetName()
199 <<
" previous phys post vol: " << savevolpost->GetName() << endl;
202 savepoststepstatus = postPoint->GetStepStatus();
204 if (aTrack->GetTrackID() != savetrackid)
206 cout <<
"hits do not belong to the same track" << endl;
207 cout <<
"saved track: " << savetrackid
208 <<
", current trackid: " << aTrack->GetTrackID()
212 saveprestepstatus = prePoint->GetStepStatus();
213 savepoststepstatus = postPoint->GetStepStatus();
215 savevolpost = touchpost->GetVolume();
217 hit->
set_x(1, postPoint->GetPosition().x() / cm);
218 hit->
set_y(1, postPoint->GetPosition().y() / cm);
219 hit->
set_z(1, postPoint->GetPosition().z() / cm);
221 hit->
set_px(1, postPoint->GetMomentum().x() / GeV);
222 hit->
set_py(1, postPoint->GetMomentum().y() / GeV);
223 hit->
set_pz(1, postPoint->GetMomentum().z() / GeV);
225 hit->
set_t(1, postPoint->GetGlobalTime() / nanosecond);
228 if (hit->
get_z(1) * cm > zmax || hit->
get_z(1) * cm < zmin)
231 <<
" PHG4PolyconSteppingAction: Exit hit z " << hit->
get_z(1) * cm
232 <<
" outside acceptance zmin " << zmin
233 <<
", zmax " << zmax <<
", layer: " << layer_id << endl;
243 double eion = edep - aStep->GetNonIonizingEnergyDeposit() / GeV;
247 if (save_light_yield)
254 if (G4VUserTrackInformation* p = aTrack->GetUserInformation())
270 if (postPoint->GetStepStatus() == fGeomBoundary ||
271 postPoint->GetStepStatus() == fWorldBoundary ||
272 postPoint->GetStepStatus() == fAtRestDoItProc ||
273 aTrack->GetTrackStatus() == fStopAndKill ||
279 hits_->
AddHit(layer_id, hit);
315 hitnodename =
"G4HIT_" + detector_->
GetName();
319 hits_ = findNode::getClass<PHG4HitContainer>(topNode, hitnodename.c_str());
322 if (!hits_ && !IsBlackHole)
324 std::cout <<
"PHG4PolyconSteppingAction::SetTopNode - unable to find " << hitnodename << std::endl;
virtual std::string GetName() const
ConstIterator AddHit(PHG4Hit *newhit)
virtual void set_layer(const unsigned int i)
virtual float get_z(const int i) const
virtual float get_eion() const
virtual void set_y(const int i, const float f)
virtual void set_shower_id(const int i)
virtual void set_light_yield(const float lightYield)
virtual float get_edep() const
virtual void set_px(const int i, const float f)
virtual void set_py(const int i, const float f)
virtual void set_t(const int i, const float f)
virtual void set_pz(const int i, const float f)
virtual void set_eion(const float f)
virtual void Reset()
Clear Event.
virtual void set_z(const int i, const float f)
virtual float get_light_yield() const
virtual void set_x(const int i, const float f)
virtual PHG4HitDefs::keytype get_hit_id() const
virtual float get_x(const int i) const
virtual void set_trkid(const int i)
virtual void set_edep(const float f)
void SuperDetector(const std::string &name)
bool IsInCylinder(const G4VPhysicalVolume *) const
void SetInterfacePointers(PHCompositeNode *)
reimplemented from base class
PHG4PolyconSteppingAction(PHG4PolyconDetector *, const PHParameters *parameters)
constructor
bool UserSteppingAction(const G4Step *, bool)
stepping action
virtual ~PHG4PolyconSteppingAction()
destructor
virtual void add_g4hit_id(int volume, PHG4HitDefs::keytype id)
virtual double GetVisibleEnergyDeposition(const G4Step *step)
get amount of energy that can make scintillation light, in Unit of GeV.
std::string GetName() const
std::string GetStepStatus(const int istatus)