ghit
addHitInfos.cc
Go to the documentation of this file.
1 // ghit
2 #include "ghit.h"
3 
4 // geant4
5 #include "G4TouchableHistory.hh"
6 #include "G4VProcess.hh"
7 
17 void GHit::addHitInfosForBitset(const HitBitSet hbs, const G4Step *thisStep) {
18  G4StepPoint *poststep = thisStep->GetPostStepPoint();
19  // Get global position and transform to local coordinates.
20  G4ThreeVector xyz = poststep->GetPosition();
21  G4ThreeVector xyzL = poststep->GetTouchableHandle()->GetHistory()->GetTopTransform().TransformPoint(xyz);
22  globalPositions.push_back(xyz);
23  localPositions.push_back(xyzL);
24 
25  // Retrieve energy deposition and time information.
26  float edep = (thisStep->GetTotalEnergyDeposit()) * (gtouchable->getEnergyMultiplier());
27  float time = poststep->GetGlobalTime();
28  edeps.push_back(edep);
29  times.push_back(time);
30 
31  // Iterate over each bit and call the helper method to add extra info.
32  for (size_t hbIndex = 0; hbIndex < hbs.size(); hbIndex++) {
33  addHitInfosForBitIndex(hbIndex, hbs.test(hbIndex), thisStep);
34  }
35 }
36 
48 bool GHit::addHitInfosForBitIndex(size_t bitIndex, const bool test, const G4Step *thisStep) {
49 
50  if (!test) return false; // If the bit is not set, do nothing.
51 
52  G4Track *trk = thisStep->GetTrack();
53  G4StepPoint *prestep = thisStep->GetPreStepPoint();
54 
55  // For bit 0: record particle ID, energy, and process name.
56  if (bitIndex == 0) {
57  pids.push_back(trk->GetDefinition()->GetPDGEncoding());
58  Es.push_back(prestep->GetTotalEnergy());
59  if (trk->GetCreatorProcess()) {
60  processNames.push_back(trk->GetCreatorProcess()->GetProcessName());
61  }
62  } else if (bitIndex == 1) {
63  // Placeholder: record step length and track info.
64  } else if (bitIndex == 2) {
65  // Placeholder: record mother particle track information.
66  } else if (bitIndex == 3) {
67  // Placeholder: record meta information.
68  } else if (bitIndex == 4) {
69  // Placeholder: record optical photon-specific information.
70  }
71  return true;
72 }
void addHitInfosForBitset(const HitBitSet hbs, const G4Step *thisStep)
Adds hit information based on a HitBitSet.
Definition: addHitInfos.cc:17
std::bitset< NHITBITS > HitBitSet