9 #include "G4THitsCollection.hh"
10 #include "G4Allocator.hh"
11 #include "G4ThreeVector.hh"
13 #include "G4Colour.hh"
16 #include "gtouchable.h"
29 class GHit :
public G4VHit {
38 GHit(GTouchable *gt,
const HitBitSet hbs,
const G4Step *thisStep =
nullptr,
const string cScheme =
"default");
50 inline void *
operator new(size_t);
56 inline void operator delete(
void *);
72 G4Colour colour_touch, colour_hit, colour_passby;
74 bool setColorSchema();
79 GTouchable *gtouchable;
83 vector<float> edeps, times;
84 vector <G4ThreeVector> globalPositions;
85 vector <G4ThreeVector> localPositions;
90 vector <string> processNames;
93 vector<float> stepSize;
96 std::optional<float> totalEnergyDeposited;
98 G4ThreeVector avgGlobalPosition;
99 G4ThreeVector avgLocalPosition;
103 bool addHitInfosForBitIndex(
size_t bitIndex,
const bool test,
const G4Step *thisStep);
111 inline const vector<float>
getEdeps()
const {
return edeps; }
117 inline const vector<float>
getTimes()
const {
return times; }
135 inline const vector<int>
getPids()
const {
return pids; }
142 inline int getPid()
const {
return pids.front(); }
148 inline vector<float>
getEs()
const {
return Es; }
155 inline float getE()
const {
return Es.front(); }
173 inline const vector <GIdentifier>
getGID()
const {
return gtouchable->getIdentity(); }
213 inline void *GHit::operator
new(size_t) {
219 inline void GHit::operator
delete(
void *hit) {
Represents a hit in the detector.
int getPid() const
Returns the first particle ID.
const vector< double > getDetectorDimensions() const
Returns the dimensions of the detector element.
const vector< G4ThreeVector > getGlobalPositions() const
Gets the global positions recorded for the hit.
~GHit()=default
Destructor for GHit.
const vector< GIdentifier > getGID() const
Returns the detector element identity.
const vector< float > getEdeps() const
Gets the energy depositions from each step.
const vector< float > getTimes() const
Gets the time stamps for each step.
const string getProcessName() const
Gets the process name associated with the hit.
GHit(GTouchable *gt, const HitBitSet hbs, const G4Step *thisStep=nullptr, const string cScheme="default")
Constructor for GHit.
void addHitInfosForBitset(const HitBitSet hbs, const G4Step *thisStep)
Adds hit information based on a HitBitSet.
bool is_same_hit(GHit *hit)
Compare two ghits.
void Draw() override
Draws the hit using Geant4 visualization.
const vector< int > getPids() const
Gets the particle IDs recorded for the hit.
const vector< G4ThreeVector > getLocalPositions() const
Gets the local positions recorded for the hit.
void calculateInfosForBit(int bit)
Calculates averaged hit information for the specified bit.
G4ThreeVector getAvgGlobaPosition()
Computes the average global position of the hit.
float getE() const
Returns the first energy value.
float getTotalEnergyDeposited()
Computes the total energy deposited.
vector< int > getTTID()
Returns the touchable identity values as integers.
G4ThreeVector getAvgLocalPosition()
Computes the average local position of the hit.
vector< float > getEs() const
Gets the energy values recorded in bit 1.
const GTouchable * getGTouchable() const
Returns the GTouchable associated with the hit.
Defines the HitBitSet and associated bit indices.
std::bitset< NHITBITS > HitBitSet
G4ThreadLocal G4Allocator< GHit > * GHitAllocator
G4THitsCollection< GHit > GHitsCollection