Class Reference for E1039 Core & Analysis Software
PHG4ConeSteppingAction.cc
Go to the documentation of this file.
2 #include "PHG4ConeDetector.h"
3 
5 #include <g4main/PHG4Hit.h>
6 #include <g4main/PHG4Hitv1.h>
7 #include <g4main/PHG4Shower.h>
9 
10 #include <phool/getClass.h>
11 
12 #include <Geant4/G4Step.hh>
13 
14 #include <iostream>
15 
16 using namespace std;
17 //____________________________________________________________________________..
19  detector_( detector ),
20  hits_(NULL),
21  hit(NULL),
22  saveshower(NULL)
23 {}
24 
26 {
27  // if the last hit was a zero energie deposit hit, it is just reset
28  // and the memory is still allocated, so we need to delete it here
29  // if the last hit was saved, hit is a NULL pointer which are
30  // legal to delete (it results in a no operation)
31  delete hit;
32 }
33 
34 //____________________________________________________________________________..
35 bool PHG4ConeSteppingAction::UserSteppingAction( const G4Step* aStep, bool )
36 {
37 
38  // get volume of the current step
39  G4VPhysicalVolume* volume = aStep->GetPreStepPoint()->GetTouchableHandle()->GetVolume();
40 
41  // collect energy and track length step by step
42  G4double edep = aStep->GetTotalEnergyDeposit() / GeV;
43 
44  const G4Track* aTrack = aStep->GetTrack();
45 
46  int layer_id = detector_->get_Layer();
47  // make sure we are in a volume
48  if ( detector_->IsInConeActive(volume) )
49  {
50  bool geantino = false;
51  // the check for the pdg code speeds things up, I do not want to make
52  // an expensive string compare for every track when we know
53  // geantino or chargedgeantino has pid=0
54  if (aTrack->GetParticleDefinition()->GetPDGEncoding() == 0 &&
55  aTrack->GetParticleDefinition()->GetParticleName().find("geantino") != string::npos)
56  {
57  geantino = true;
58  }
59  G4StepPoint * prePoint = aStep->GetPreStepPoint();
60  G4StepPoint * postPoint = aStep->GetPostStepPoint();
61 // cout << "track id " << aTrack->GetTrackID() << endl;
62 // cout << "time prepoint: " << prePoint->GetGlobalTime() << endl;
63 // cout << "time postpoint: " << postPoint->GetGlobalTime() << endl;
64  switch (prePoint->GetStepStatus())
65  {
66  case fGeomBoundary:
67  case fUndefined:
68  if (! hit)
69  {
70  hit = new PHG4Hitv1();
71  }
72  //here we set the entrance values in cm
73  hit->set_x( 0, prePoint->GetPosition().x() / cm);
74  hit->set_y( 0, prePoint->GetPosition().y() / cm );
75  hit->set_z( 0, prePoint->GetPosition().z() / cm );
76  // time in ns
77  hit->set_t( 0, prePoint->GetGlobalTime() / nanosecond );
78  //set the track ID
79  hit->set_trkid(aTrack->GetTrackID());
80  //set the initial energy deposit
81  hit->set_edep(0);
82 
83  if ( G4VUserTrackInformation* p = aTrack->GetUserInformation() )
84  {
85  if ( PHG4TrackUserInfoV1* pp = dynamic_cast<PHG4TrackUserInfoV1*>(p) )
86  {
87  hit->set_trkid(pp->GetUserTrackId());
88  hit->set_shower_id(pp->GetShower()->get_id());
89  saveshower = pp->GetShower();
90  }
91  }
92 
93  break;
94  default:
95  break;
96  }
97  // here we just update the exit values, it will be overwritten
98  // for every step until we leave the volume or the particle
99  // ceases to exist
100  hit->set_x( 1, postPoint->GetPosition().x() / cm );
101  hit->set_y( 1, postPoint->GetPosition().y() / cm );
102  hit->set_z( 1, postPoint->GetPosition().z() / cm );
103 
104  hit->set_t( 1, postPoint->GetGlobalTime() / nanosecond );
105  //sum up the energy to get total deposited
106  hit->set_edep(hit->get_edep() + edep);
107  if (geantino)
108  {
109  hit->set_edep(-1); // only energy=0 g4hits get dropped, this way geantinos survive the g4hit compression
110  }
111  if (edep > 0)
112  {
113  if ( G4VUserTrackInformation* p = aTrack->GetUserInformation() )
114  {
115  if ( PHG4TrackUserInfoV1* pp = dynamic_cast<PHG4TrackUserInfoV1*>(p) )
116  {
117  pp->SetKeep(1); // we want to keep the track
118  }
119  }
120  }
121 
122  // if any of these conditions is true this is the last step in
123  // this volume and we need to save the hit
124  // postPoint->GetStepStatus() == fGeomBoundary: track leaves this volume
125  // postPoint->GetStepStatus() == fWorldBoundary: track leaves this world
126  // (not sure if this will ever be the case)
127  // aTrack->GetTrackStatus() == fStopAndKill: track ends
128  if (postPoint->GetStepStatus() == fGeomBoundary || postPoint->GetStepStatus() == fWorldBoundary|| aTrack->GetTrackStatus() == fStopAndKill)
129  {
130  // save only hits with energy deposit (or -1 for geantino)
131  if (hit->get_edep())
132  {
133  hits_->AddHit(layer_id, hit);
134  if (saveshower)
135  {
136  saveshower->add_g4hit_id(hits_->GetID(),hit->get_hit_id());
137  }
138  // ownership has been transferred to container, set to null
139  // so we will create a new hit for the next track
140  hit = NULL;
141  }
142  else
143  {
144  // if this hit has no energy deposit, just reset it for reuse
145  // this means we have to delete it in the dtor. If this was
146  // the last hit we processed the memory is still allocated
147  hit->Reset();
148  }
149  }
150  // return true to indicate the hit was used
151  return true;
152 
153  }
154  else
155  {
156  return false;
157  }
158 }
159 
160 //____________________________________________________________________________..
162 {
163 
164  string hitnodename;
165  if (detector_->SuperDetector() != "NONE")
166  {
167  hitnodename = "G4HIT_" + detector_->SuperDetector();
168  }
169  else
170  {
171  hitnodename = "G4HIT_" + detector_->GetName();
172  }
173 
174  //now look for the map and grab a pointer to it.
175  hits_ = findNode::getClass<PHG4HitContainer>( topNode , hitnodename.c_str() );
176 
177  // if we do not find the node we need to make it.
178  if ( ! hits_ )
179  { std::cout << "PHG4ConeSteppingAction::SetTopNode - unable to find " << hitnodename << std::endl; }
180 
181 }
#define NULL
Definition: Pdb.h:9
int get_Layer() const
bool IsInConeActive(G4VPhysicalVolume *)
void SuperDetector(const std::string &name)
virtual ~PHG4ConeSteppingAction()
destructor
virtual void SetInterfacePointers(PHCompositeNode *)
reimplemented from base class
PHG4ConeSteppingAction(PHG4ConeDetector *)
constructor
virtual bool UserSteppingAction(const G4Step *, bool)
stepping action
virtual std::string GetName() const
Definition: PHG4Detector.h:51
ConstIterator AddHit(PHG4Hit *newhit)
virtual void set_y(const int i, const float f)
Definition: PHG4Hit.h:53
virtual void set_shower_id(const int i)
Definition: PHG4Hit.h:68
virtual float get_edep() const
Definition: PHG4Hit.h:31
virtual void set_t(const int i, const float f)
Definition: PHG4Hit.h:61
virtual void Reset()
Clear Event.
Definition: PHG4Hit.cc:63
virtual void set_z(const int i, const float f)
Definition: PHG4Hit.h:54
virtual void set_x(const int i, const float f)
Definition: PHG4Hit.h:52
virtual PHG4HitDefs::keytype get_hit_id() const
Definition: PHG4Hit.h:36
virtual void set_trkid(const int i)
Definition: PHG4Hit.h:71
virtual void set_edep(const float f)
Definition: PHG4Hit.h:62
virtual void add_g4hit_id(int volume, PHG4HitDefs::keytype id)
Definition: PHG4Shower.h:100