5 #include <phparameter/PHParameters.h>
15 #include <Geant4/G4Step.hh>
16 #include <Geant4/G4SystemOfUnits.hh>
29 , savevolpost(nullptr)
31 , saveprestepstatus(-1)
32 , savepoststepstatus(-1)
33 , active(params->get_int_param(
"active"))
34 , IsBlackHole(params->get_int_param(
"blackhole"))
35 , use_g4_steps(params->get_int_param(
"use_g4steps"))
51 G4TouchableHandle touch = aStep->GetPreStepPoint()->GetTouchableHandle();
52 G4TouchableHandle touchpost = aStep->GetPostStepPoint()->GetTouchableHandle();
54 G4VPhysicalVolume* volume = touch->GetVolume();
62 G4double edep = aStep->GetTotalEnergyDeposit() / GeV;
63 G4double eion = (aStep->GetTotalEnergyDeposit() - aStep->GetNonIonizingEnergyDeposit()) / GeV;
64 const G4Track* aTrack = aStep->GetTrack();
69 edep = aTrack->GetKineticEnergy() / GeV;
70 G4Track* killtrack =
const_cast<G4Track*
>(aTrack);
71 killtrack->SetTrackStatus(fStopAndKill);
78 bool geantino =
false;
82 if (aTrack->GetParticleDefinition()->GetPDGEncoding() == 0 &&
83 aTrack->GetParticleDefinition()->GetParticleName().find(
"geantino") != string::npos)
87 G4StepPoint* prePoint = aStep->GetPreStepPoint();
88 G4StepPoint* postPoint = aStep->GetPostStepPoint();
92 int prepointstatus = prePoint->GetStepStatus();
93 if (prepointstatus == fGeomBoundary ||
94 prepointstatus == fUndefined ||
95 (prepointstatus == fPostStepDoItProc && savepoststepstatus == fGeomBoundary) ||
98 if (prepointstatus == fPostStepDoItProc && savepoststepstatus == fGeomBoundary)
100 cout <<
GetName() <<
": New Hit for " << endl;
105 cout <<
"last track: " << savetrackid
106 <<
", current trackid: " << aTrack->GetTrackID() << endl;
107 cout <<
"phys pre vol: " << volume->GetName()
108 <<
" post vol : " << touchpost->GetVolume()->GetName() << endl;
109 cout <<
" previous phys pre vol: " << savevolpre->GetName()
110 <<
" previous phys post vol: " << savevolpost->GetName() << endl;
118 hit->
set_x(0, prePoint->GetPosition().x() / cm);
119 hit->
set_y(0, prePoint->GetPosition().y() / cm);
120 hit->
set_z(0, prePoint->GetPosition().z() / cm);
122 hit->
set_t(0, prePoint->GetGlobalTime() / nanosecond);
125 savetrackid = aTrack->GetTrackID();
129 if (!geantino && !IsBlackHole && active)
133 if (G4VUserTrackInformation* p = aTrack->GetUserInformation())
139 saveshower = pp->GetShower();
146 if (!hit || !isfinite(hit->
get_x(0)))
148 cout <<
GetName() <<
": hit was not created" << endl;
153 cout <<
"last track: " << savetrackid
154 <<
", current trackid: " << aTrack->GetTrackID() << endl;
155 cout <<
"phys pre vol: " << volume->GetName()
156 <<
" post vol : " << touchpost->GetVolume()->GetName() << endl;
157 cout <<
" previous phys pre vol: " << savevolpre->GetName()
158 <<
" previous phys post vol: " << savevolpost->GetName() << endl;
161 savepoststepstatus = postPoint->GetStepStatus();
163 if (aTrack->GetTrackID() != savetrackid)
165 cout <<
"hits do not belong to the same track" << endl;
166 cout <<
"saved track: " << savetrackid
167 <<
", current trackid: " << aTrack->GetTrackID()
171 saveprestepstatus = prePoint->GetStepStatus();
172 savepoststepstatus = postPoint->GetStepStatus();
174 savevolpost = touchpost->GetVolume();
179 hit->
set_x(1, postPoint->GetPosition().x() / cm);
180 hit->
set_y(1, postPoint->GetPosition().y() / cm);
181 hit->
set_z(1, postPoint->GetPosition().z() / cm);
183 hit->
set_t(1, postPoint->GetGlobalTime() / nanosecond);
189 if (active && !IsBlackHole && !geantino)
199 if (G4VUserTrackInformation* p = aTrack->GetUserInformation())
215 if (postPoint->GetStepStatus() == fGeomBoundary ||
216 postPoint->GetStepStatus() == fWorldBoundary ||
217 postPoint->GetStepStatus() == fAtRestDoItProc ||
218 aTrack->GetTrackStatus() == fStopAndKill ||
224 hits_->
AddHit(layer_id, hit);
260 hitnodename =
"G4HIT_" + detector_->
GetName();
264 hits_ = findNode::getClass<PHG4HitContainer>(topNode, hitnodename.c_str());
269 std::cout <<
"PHG4SquareTubeSteppingAction::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_eion() const
virtual void set_y(const int i, const float f)
virtual void set_shower_id(const int i)
virtual float get_edep() const
virtual void set_t(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 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)
void SuperDetector(const std::string &name)
bool IsInBlock(G4VPhysicalVolume *) const
PHG4SquareTubeSteppingAction(PHG4SquareTubeDetector *, const PHParameters *parameters)
constructor
virtual bool UserSteppingAction(const G4Step *, bool)
stepping action
virtual ~PHG4SquareTubeSteppingAction()
destructor
virtual void SetInterfacePointers(PHCompositeNode *)
reimplemented from base class
std::string GetName() const
std::string GetStepStatus(const int istatus)