5 #include "gutsConventions.h"
8 #include "G4VVisManager.hh"
10 #include "G4VisAttributes.hh"
25 averageTime = UNINITIALIZEDNUMBERQUANTITY;
26 avgGlobalPosition = G4ThreeVector(UNINITIALIZEDNUMBERQUANTITY, UNINITIALIZEDNUMBERQUANTITY, UNINITIALIZEDNUMBERQUANTITY);
27 avgLocalPosition = G4ThreeVector(UNINITIALIZEDNUMBERQUANTITY, UNINITIALIZEDNUMBERQUANTITY, UNINITIALIZEDNUMBERQUANTITY);
28 processName = UNINITIALIZEDSTRINGQUANTITY;
40 vector <GIdentifier> gids =
getGID();
41 for (
auto &gid: gids) {
43 ttid.push_back(gid.getValue());
57 G4VVisManager *pVVisManager = G4VVisManager::GetConcreteInstance();
64 if (globalPositions.empty())
return;
66 G4Circle circle(globalPositions[0]);
67 circle.SetFillStyle(G4Circle::filled);
72 circle.SetScreenSize(10);
73 circle.SetVisAttributes(G4VisAttributes(colour_hit));
74 }
else if (etot == 0) {
75 circle.SetScreenSize(8);
76 circle.SetVisAttributes(G4VisAttributes(colour_passby));
79 pVVisManager->Draw(circle);
90 bool GHit::setColorSchema() {
92 colour_hit = G4Colour(1.0, 0.0, 0.0);
93 colour_passby = G4Colour(0.0, 1.0, 0.0);
Represents a hit in the detector.
const vector< GIdentifier > getGID() const
Returns the detector element identity.
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.
float getTotalEnergyDeposited()
Computes the total energy deposited.
vector< int > getTTID()
Returns the touchable identity values as integers.
const GTouchable * getGTouchable() const
Returns the GTouchable associated with the hit.
std::bitset< NHITBITS > HitBitSet
G4ThreadLocal G4Allocator< GHit > * GHitAllocator