Class Reference for E1039 Core & Analysis Software
PHG4ConeRegionSteppingAction.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 ), hits_(NULL), hit(NULL)
20 {}
21 
22 //____________________________________________________________________________..
24 {
25 
26  // get volume of the current step
27  G4VPhysicalVolume* volume = aStep->GetPreStepPoint()->GetTouchableHandle()->GetVolume();
28 
29  // collect energy and track length step by step
30  G4double edep = aStep->GetTotalEnergyDeposit() / GeV;
31 
32  const G4Track* aTrack = aStep->GetTrack();
33 
34  int layer_id = 0;
35  // make sure we are in a volume
36  if ( detector_->IsInConeActive(volume) )
37  {
38  G4StepPoint * prePoint = aStep->GetPreStepPoint();
39  G4StepPoint * postPoint = aStep->GetPostStepPoint();
40  cout << "track id " << aTrack->GetTrackID() << endl;
41  cout << "time prepoint: " << prePoint->GetGlobalTime() << endl;
42  cout << "time postpoint: " << postPoint->GetGlobalTime() << endl;
43  switch (prePoint->GetStepStatus())
44  {
45  case fGeomBoundary:
46  case fUndefined:
47  hit = new PHG4Hitv1();
48  //here we set the entrance values in cm
49  hit->set_x( 0, prePoint->GetPosition().x() / cm);
50  hit->set_y( 0, prePoint->GetPosition().y() / cm );
51  hit->set_z( 0, prePoint->GetPosition().z() / cm );
52  // time in ns
53  hit->set_t( 0, prePoint->GetGlobalTime() / nanosecond );
54  //set the track ID
55  {
56  hit->set_trkid(aTrack->GetTrackID());
57  if ( G4VUserTrackInformation* p = aTrack->GetUserInformation() )
58  {
59  if ( PHG4TrackUserInfoV1* pp = dynamic_cast<PHG4TrackUserInfoV1*>(p) )
60  {
61  hit->set_trkid(pp->GetUserTrackId());
62  hit->set_shower_id(pp->GetShower()->get_id());
63  }
64  }
65  }
66 
67  //set the initial energy deposit
68  hit->set_edep(0);
69 
70  // Now add the hit
71  hits_->AddHit(layer_id, hit);
72 
73  {
74  if ( G4VUserTrackInformation* p = aTrack->GetUserInformation() )
75  {
76  if ( PHG4TrackUserInfoV1* pp = dynamic_cast<PHG4TrackUserInfoV1*>(p) )
77  {
78  pp->GetShower()->add_g4hit_id(hits_->GetID(),hit->get_hit_id());
79  }
80  }
81  }
82 
83  break;
84  default:
85  break;
86  }
87  // here we just update the exit values, it will be overwritten
88  // for every step until we leave the volume or the particle
89  // ceases to exist
90  hit->set_x( 1, postPoint->GetPosition().x() / cm );
91  hit->set_y( 1, postPoint->GetPosition().y() / cm );
92  hit->set_z( 1, postPoint->GetPosition().z() / cm );
93 
94  hit->set_t( 1, postPoint->GetGlobalTime() / nanosecond );
95  //sum up the energy to get total deposited
96  hit->set_edep(hit->get_edep() + edep);
97 
98  // hit->identify();
99  // return true to indicate the hit was used
100  return;
101 
102  }
103  else
104  {
105  return;
106  }
107 }
108 
109 //____________________________________________________________________________..
111 {
112 
113  string hitnodename = "G4HIT_" + detector_->GetName();
114  //now look for the map and grab a pointer to it.
115  hits_ = findNode::getClass<PHG4HitContainer>( topNode , hitnodename.c_str() );
116 
117  // if we do not find the node we need to make it.
118  if ( ! hits_ )
119  { std::cout << "PHG4ConeRegionSteppingAction::SetTopNode - unable to find " << hitnodename << std::endl;
120  }
121 
122 }
#define NULL
Definition: Pdb.h:9
bool IsInConeActive(G4VPhysicalVolume *)
virtual void UserSteppingAction(const G4Step *)
stepping action
virtual void SetInterfacePointers(PHCompositeNode *)
reimplemented from base class
PHG4ConeRegionSteppingAction(PHG4ConeDetector *)
constructor
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 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