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;
138 int elem_id = detector_->
get_elem_id(volume->GetName());
140 hit->
set_layer((
unsigned int) layer_id*100 + elem_id);
143 hit->
set_x(0, prePoint->GetPosition().x() / cm);
144 hit->
set_y(0, prePoint->GetPosition().y() / cm);
145 hit->
set_z(0, prePoint->GetPosition().z() / cm);
147 hit->
set_px(0, prePoint->GetMomentum().x() / GeV);
148 hit->
set_py(0, prePoint->GetMomentum().y() / GeV);
149 hit->
set_pz(0, prePoint->GetMomentum().z() / GeV);
152 hit->
set_t(0, prePoint->GetGlobalTime() / nanosecond);
155 savetrackid = aTrack->GetTrackID();
158 if (!geantino && !IsBlackHole)
162 if (save_light_yield)
166 if (G4VUserTrackInformation* p = aTrack->GetUserInformation())
172 saveshower = pp->GetShower();
176 if (hit->
get_z(0) * cm > zmax || hit->
get_z(0) * cm < zmin)
179 <<
"PHG4TargetCoilV2SteppingAction: Entry hit z " << hit->
get_z(0) * cm
180 <<
" outside acceptance, zmin " << zmin
181 <<
", zmax " << zmax <<
", layer: " << layer_id << endl;
189 if (!hit || !isfinite(hit->
get_x(0)))
191 cout <<
GetName() <<
": hit was not created" << endl;
196 cout <<
"last track: " << savetrackid
197 <<
", current trackid: " << aTrack->GetTrackID() << endl;
198 cout <<
"phys pre vol: " << volume->GetName()
199 <<
" post vol : " << touchpost->GetVolume()->GetName() << endl;
200 cout <<
" previous phys pre vol: " << savevolpre->GetName()
201 <<
" previous phys post vol: " << savevolpost->GetName() << endl;
204 savepoststepstatus = postPoint->GetStepStatus();
206 if (aTrack->GetTrackID() != savetrackid)
208 cout <<
"hits do not belong to the same track" << endl;
209 cout <<
"saved track: " << savetrackid
210 <<
", current trackid: " << aTrack->GetTrackID()
214 saveprestepstatus = prePoint->GetStepStatus();
215 savepoststepstatus = postPoint->GetStepStatus();
217 savevolpost = touchpost->GetVolume();
219 hit->
set_x(1, postPoint->GetPosition().x() / cm);
220 hit->
set_y(1, postPoint->GetPosition().y() / cm);
221 hit->
set_z(1, postPoint->GetPosition().z() / cm);
223 hit->
set_px(1, postPoint->GetMomentum().x() / GeV);
224 hit->
set_py(1, postPoint->GetMomentum().y() / GeV);
225 hit->
set_pz(1, postPoint->GetMomentum().z() / GeV);
227 hit->
set_t(1, postPoint->GetGlobalTime() / nanosecond);
230 if (hit->
get_z(1) * cm > zmax || hit->
get_z(1) * cm < zmin)
233 <<
" PHG4TargetCoilV2SteppingAction: Exit hit z " << hit->
get_z(1) * cm
234 <<
" outside acceptance zmin " << zmin
235 <<
", zmax " << zmax <<
", layer: " << layer_id << endl;
245 double eion = edep - aStep->GetNonIonizingEnergyDeposit() / GeV;
249 if (save_light_yield)
256 if (G4VUserTrackInformation* p = aTrack->GetUserInformation())
272 if (postPoint->GetStepStatus() == fGeomBoundary ||
273 postPoint->GetStepStatus() == fWorldBoundary ||
274 postPoint->GetStepStatus() == fAtRestDoItProc ||
275 aTrack->GetTrackStatus() == fStopAndKill ||
281 hits_->
AddHit(layer_id, hit);
317 hitnodename =
"G4HIT_" + detector_->
GetName();
321 hits_ = findNode::getClass<PHG4HitContainer>(topNode, hitnodename.c_str());
324 if (!hits_ && !IsBlackHole)
326 std::cout <<
"PHG4TargetCoilV2SteppingAction::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)
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
int get_elem_id(const std::string &name) const
bool IsInCylinder(const G4VPhysicalVolume *) const
void SuperDetector(const std::string &name)
bool UserSteppingAction(const G4Step *, bool)
stepping action
virtual ~PHG4TargetCoilV2SteppingAction()
destructor
PHG4TargetCoilV2SteppingAction(PHG4TargetCoilV2Detector *, const PHParameters *parameters)
constructor
void SetInterfacePointers(PHCompositeNode *)
reimplemented from base class
std::string GetStepStatus(const int istatus)