4 #include <phparameter/PHParameters.h>
16 #include <Geant4/G4ReferenceCountedHandle.hh>
17 #include <Geant4/G4Step.hh>
18 #include <Geant4/G4StepPoint.hh>
19 #include <Geant4/G4StepStatus.hh>
20 #include <Geant4/G4String.hh>
21 #include <Geant4/G4SystemOfUnits.hh>
22 #include <Geant4/G4ThreeVector.hh>
23 #include <Geant4/G4TouchableHandle.hh>
24 #include <Geant4/G4Track.hh>
25 #include <Geant4/G4TrackStatus.hh>
26 #include <Geant4/G4Types.hh>
27 #include <Geant4/G4VPhysicalVolume.hh>
28 #include <Geant4/G4VTouchable.hh>
29 #include <Geant4/G4VUserTrackInformation.hh>
40 : m_Detector(detector)
41 , m_SignalHitContainer(nullptr)
42 , m_AbsorberHitContainer(nullptr)
43 , m_Params(parameters)
44 , m_CurrentHitContainer(nullptr)
46 , m_CurrentShower(nullptr)
47 , m_IsActive(m_Params->get_int_param(
"active"))
48 , m_IsAbsorberActive(m_Params->get_int_param(
"absorberactive"))
50 , m_LightScintModel(1)
51 , m_IsBlackHole(m_Params->get_int_param(
"blackhole"))
52 , m_nTowersX(m_Params->get_int_param(
"n_towers_x"))
53 , m_nTowersY(m_Params->get_int_param(
"n_towers_y"))
69 G4TouchableHandle touch = aStep->GetPreStepPoint()->GetTouchableHandle();
70 G4VPhysicalVolume* volume = touch->GetVolume();
73 if(whichactive == 0)
return false;
79 int depth = touch->GetHistoryDepth();
82 towerID = touch->GetCopyNumber(1);
83 plateID = touch->GetCopyNumber(0);
85 towerIDY = towerID % m_nTowersY;
86 towerIDX = (towerID - towerIDY)/m_nTowersY;
90 std::cerr <<
"EMCal volumn history is wrong for " <<
name <<
" with history depth = " << depth << std::endl;
94 double edep = aStep->GetTotalEnergyDeposit()/GeV;
95 double eion = (aStep->GetTotalEnergyDeposit() - aStep->GetNonIonizingEnergyDeposit())/GeV;
96 double light_yield = 0;
99 const G4Track* aTrack = aStep->GetTrack();
102 if(m_IsBlackHole > 0)
104 edep = aTrack->GetKineticEnergy()/GeV;
105 G4Track* killtrack =
const_cast<G4Track*
>(aTrack);
106 killtrack->SetTrackStatus(fStopAndKill);
112 bool geantino = (aTrack->GetParticleDefinition()->GetPDGEncoding() == 0 && aTrack->GetParticleDefinition()->GetParticleName().find(
"geantino") != string::npos);
114 G4StepPoint* prePoint = aStep->GetPreStepPoint();
115 if(prePoint->GetStepStatus() == fGeomBoundary || prePoint->GetStepStatus() == fUndefined)
130 m_Hit->
set_x(0, prePoint->GetPosition().x()/cm);
131 m_Hit->
set_y(0, prePoint->GetPosition().y()/cm);
132 m_Hit->
set_z(0, prePoint->GetPosition().z()/cm);
135 m_Hit->
set_px(0, prePoint->GetMomentum().x()/GeV);
136 m_Hit->
set_py(0, prePoint->GetMomentum().y()/GeV);
137 m_Hit->
set_pz(0, prePoint->GetMomentum().z()/GeV);
140 m_Hit->
set_t(0, prePoint->GetGlobalTime()/nanosecond);
153 m_CurrentHitContainer = m_SignalHitContainer;
158 m_CurrentHitContainer = m_AbsorberHitContainer;
162 if(G4VUserTrackInformation* p = aTrack->GetUserInformation())
168 m_CurrentShower = pp->GetShower();
176 if(m_LightScintModel > 0)
184 G4StepPoint* postPoint = aStep->GetPostStepPoint();
185 m_Hit->
set_x(1, postPoint->GetPosition().x()/cm);
186 m_Hit->
set_y(1, postPoint->GetPosition().y()/cm);
187 m_Hit->
set_z(1, postPoint->GetPosition().z()/cm);
188 m_Hit->
set_t(1, postPoint->GetGlobalTime()/nanosecond);
190 m_Hit->
set_px(1, postPoint->GetMomentum().x()/GeV);
191 m_Hit->
set_py(1, postPoint->GetMomentum().y()/GeV);
192 m_Hit->
set_pz(1, postPoint->GetMomentum().z()/GeV);
212 if(edep > 0 && (whichactive > 0 || m_AbsorberTruth > 0))
214 if(G4VUserTrackInformation* p = aTrack->GetUserInformation())
223 if(postPoint->GetStepStatus() == fGeomBoundary || postPoint->GetStepStatus() == fWorldBoundary ||
224 postPoint->GetStepStatus() == fAtRestDoItProc || aTrack->GetTrackStatus() == fStopAndKill)
230 if(m_CurrentShower !=
nullptr)
256 std::string hitnodename;
257 std::string absorbernodename;
262 absorbernodename =
"G4HIT_ABSORBER_" + m_Detector->
SuperDetector();
266 hitnodename =
"G4HIT_" + m_Detector->
GetName();
267 absorbernodename =
"G4HIT_ABSORBER_" + m_Detector->
GetName();
271 m_SignalHitContainer = findNode::getClass<PHG4HitContainer>(topNode, hitnodename);
272 m_AbsorberHitContainer = findNode::getClass<PHG4HitContainer>(topNode, absorbernodename);
275 if(m_IsActive > 0 && !m_SignalHitContainer)
277 std::cerr <<
"PHG4EMCalSteppingAction::SetTopNode - unable to find " << hitnodename << std::endl;
281 if(m_IsAbsorberActive > 0 && !m_AbsorberHitContainer)
283 if(
Verbosity() > 0) std::cout <<
"PHG4EMCalSteppingAction::SetTopNode - unable to find " << absorbernodename << std::endl;
virtual std::string GetName() const
int IsInForwardEcal(G4VPhysicalVolume *) const
void SuperDetector(const std::string &name)
virtual bool UserSteppingAction(const G4Step *, bool)
stepping action
virtual void SetInterfacePointers(PHCompositeNode *)
reimplemented from base class
PHG4EMCalSteppingAction(PHG4EMCalDetector *, const PHParameters *parameters)
constructor
virtual ~PHG4EMCalSteppingAction()
destroctor
ConstIterator AddHit(PHG4Hit *newhit)
virtual void set_index_l(const int i)
virtual void set_index_k(const 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 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 void set_trkid(const int i)
virtual void set_scint_id(const int i)
virtual void set_edep(const float f)
virtual void set_index_j(const int i)
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.