Class Reference for E1039 Core & Analysis Software
SQG4DipoleMagnetSteppingAction.cc
Go to the documentation of this file.
3 #include "PHG4StepStatusDecode.h"
4 
5 #include <phparameter/PHParameters.h>
6 
7 #include <g4main/PHG4Hit.h>
9 #include <g4main/PHG4Hitv1.h>
10 #include <g4main/PHG4Shower.h>
12 
13 #include <phool/getClass.h>
14 
15 #include <Geant4/G4Step.hh>
16 #include <Geant4/G4SystemOfUnits.hh>
17 
18 #include <iostream>
19 
20 //____________________________________________________________________________..
22  : detector_(detector)
23  , params(parameters)
24  , hits_(nullptr)
25  , hit(nullptr)
26  , saveshower(nullptr)
27  , savevolpre(nullptr)
28  , savevolpost(nullptr)
29  , savetrackid(-1)
30  , saveprestepstatus(-1)
31  , savepoststepstatus(-1)
32  , active(params->get_int_param("active"))
33  , IsBlackHole(params->get_int_param("blackhole"))
34  , use_g4_steps(params->get_int_param("use_g4steps"))
35  , enable_track_filter(params->get_int_param("enable_track_filter"))
36  , filter_max_slope(params->get_double_param("filter_max_slope"))
37  , filter_min_energy(params->get_double_param("filter_min_energy"))
38 {
39 }
40 
42 {
43  // if the last hit was a zero energie deposit hit, it is just reset
44  // and the memory is still allocated, so we need to delete it here
45  // if the last hit was saved, hit is a nullptr pointer which are
46  // legal to delete (it results in a no operation)
47  delete hit;
48 }
49 
50 //____________________________________________________________________________..
52 {
53  if(enable_track_filter == 0) return false;
54 
55  G4TouchableHandle touch = aStep->GetPreStepPoint()->GetTouchableHandle();
56  G4TouchableHandle touchpost = aStep->GetPostStepPoint()->GetTouchableHandle();
57  G4VPhysicalVolume* volume = touch->GetVolume();
58 
59  if(!detector_->IsInBlock(volume)) return false;
60 
61  //apply track filtering cuts
62  G4Track* aTrack = aStep->GetTrack();
63 
64  if(aTrack->GetMomentumDirection()[2] < 0.) //going backwards
65  {
66  aTrack->SetTrackStatus(fStopAndKill);
67  return false;
68  }
69 
70  if(aTrack->GetTotalEnergy() < 1.*MeV) // quickly kill all very soft particles
71  {
72  aTrack->SetTrackStatus(fStopAndKill);
73  return false;
74  }
75 
76  double z_pos = aTrack->GetPosition()[2]/cm;
77  if(z_pos > 0. && z_pos < 500.) //in the beam dump, but energy is not sufficient to get out
78  {
79  double minE = (500. - z_pos)/500.*filter_min_energy*GeV;
80  if(aTrack->GetTotalEnergy() < minE)
81  {
82  aTrack->SetTrackStatus(fStopAndKill);
83  return false;
84  }
85  }
86 
87  return false;
88 }
89 
90 //____________________________________________________________________________..
92 {
93  //since magnet cannot be active, nothing is needed here
94  return;
95 }
bool IsInBlock(G4VPhysicalVolume *) const
virtual void SetInterfacePointers(PHCompositeNode *)
reimplemented from base class
virtual bool UserSteppingAction(const G4Step *, bool)
stepping action
SQG4DipoleMagnetSteppingAction(SQG4DipoleMagnetDetector *, const PHParameters *parameters)
constructor