5 #include "G4TouchableHistory.hh"
6 #include "G4VProcess.hh"
18 G4StepPoint *poststep = thisStep->GetPostStepPoint();
20 G4ThreeVector xyz = poststep->GetPosition();
21 G4ThreeVector xyzL = poststep->GetTouchableHandle()->GetHistory()->GetTopTransform().TransformPoint(xyz);
22 globalPositions.push_back(xyz);
23 localPositions.push_back(xyzL);
26 float edep = (thisStep->GetTotalEnergyDeposit()) * (gtouchable->getEnergyMultiplier());
27 float time = poststep->GetGlobalTime();
28 edeps.push_back(edep);
29 times.push_back(time);
32 for (
size_t hbIndex = 0; hbIndex < hbs.size(); hbIndex++) {
33 addHitInfosForBitIndex(hbIndex, hbs.test(hbIndex), thisStep);
48 bool GHit::addHitInfosForBitIndex(
size_t bitIndex,
const bool test,
const G4Step *thisStep) {
50 if (!test)
return false;
52 G4Track *trk = thisStep->GetTrack();
53 G4StepPoint *prestep = thisStep->GetPreStepPoint();
57 pids.push_back(trk->GetDefinition()->GetPDGEncoding());
58 Es.push_back(prestep->GetTotalEnergy());
59 if (trk->GetCreatorProcess()) {
60 processNames.push_back(trk->GetCreatorProcess()->GetProcessName());
62 }
else if (bitIndex == 1) {
64 }
else if (bitIndex == 2) {
66 }
else if (bitIndex == 3) {
68 }
else if (bitIndex == 4) {
void addHitInfosForBitset(const HitBitSet hbs, const G4Step *thisStep)
Adds hit information based on a HitBitSet.
std::bitset< NHITBITS > HitBitSet