Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4VGFlashSensitiveDetector Class Referenceabstract

#include <G4VGFlashSensitiveDetector.hh>

Public Member Functions

 G4VGFlashSensitiveDetector ()
 
 G4VGFlashSensitiveDetector (const G4VGFlashSensitiveDetector &)
 
virtual ~G4VGFlashSensitiveDetector ()
 
G4bool operator== (const G4VGFlashSensitiveDetector &right) const
 
G4bool operator!= (const G4VGFlashSensitiveDetector &right) const
 
G4bool Hit (G4GFlashSpot *aSpot)
 

Protected Member Functions

virtual G4bool ProcessHits (G4GFlashSpot *aSpot, G4TouchableHistory *ROhist)=0
 

Detailed Description

Definition at line 51 of file G4VGFlashSensitiveDetector.hh.

Constructor & Destructor Documentation

◆ G4VGFlashSensitiveDetector() [1/2]

G4VGFlashSensitiveDetector::G4VGFlashSensitiveDetector ( )
inline

Definition at line 54 of file G4VGFlashSensitiveDetector.hh.

54{}

Referenced by G4VGFlashSensitiveDetector(), operator!=(), and operator==().

◆ G4VGFlashSensitiveDetector() [2/2]

G4VGFlashSensitiveDetector::G4VGFlashSensitiveDetector ( const G4VGFlashSensitiveDetector & )
inline

Definition at line 55 of file G4VGFlashSensitiveDetector.hh.

55{}

◆ ~G4VGFlashSensitiveDetector()

virtual G4VGFlashSensitiveDetector::~G4VGFlashSensitiveDetector ( )
inlinevirtual

Definition at line 62 of file G4VGFlashSensitiveDetector.hh.

62{}

Member Function Documentation

◆ Hit()

G4bool G4VGFlashSensitiveDetector::Hit ( G4GFlashSpot * aSpot)
inline

Definition at line 68 of file G4VGFlashSensitiveDetector.hh.

69 {
70 // This is the public method invoked by GFlashHitMaker for generating
71 // hits. The actual user's implementation for generating hits must be
72 // implemented in GenerateHits() virtual protected method.
73
74 G4bool result = true;
75 G4VSensitiveDetector* This = dynamic_cast<G4VSensitiveDetector*>(this);
76 if (!This) {
77 G4Exception("G4VGFlashSensitiveDetector::Hit()", "InvalidSetup", FatalException,
78 "Needs also to inherit from G4VSensitiveDetector!");
79 return false;
80 }
81 if (This->isActive()) {
82 G4VReadOutGeometry* ROgeometry = 0;
83 G4TouchableHistory* ROhis = 0;
84
85 if (This) ROgeometry = This->GetROgeometry();
86 if (ROgeometry) {
87 // fake pre-step point for touchable from read-out geometry.
88 G4Step fakeStep;
89 G4StepPoint* tmpPoint = fakeStep.GetPreStepPoint();
90 tmpPoint->SetTouchableHandle(aSpot->GetTouchableHandle());
91 tmpPoint->SetPosition(aSpot->GetPosition());
92 tmpPoint->SetMomentumDirection(
94 result = ROgeometry->CheckROVolume(&fakeStep, ROhis);
95 }
96 if (result) result = ProcessHits(aSpot, ROhis);
97 }
98 else {
99 result = false;
100 }
101 return result;
102 }
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
bool G4bool
Definition G4Types.hh:86
const G4Track * GetPrimaryTrack() const
G4ThreeVector GetPosition() const
const G4FastTrack * GetOriginatorTrack() const
G4TouchableHandle GetTouchableHandle() const
void SetTouchableHandle(const G4TouchableHandle &apValue)
void SetPosition(const G4ThreeVector &aValue)
void SetMomentumDirection(const G4ThreeVector &aValue)
G4StepPoint * GetPreStepPoint() const
const G4ThreeVector & GetMomentumDirection() const
virtual G4bool ProcessHits(G4GFlashSpot *aSpot, G4TouchableHistory *ROhist)=0
virtual G4bool CheckROVolume(G4Step *, G4TouchableHistory *&)
G4VReadOutGeometry * GetROgeometry() const

Referenced by GFlashHitMaker::make().

◆ operator!=()

G4bool G4VGFlashSensitiveDetector::operator!= ( const G4VGFlashSensitiveDetector & right) const
inline

Definition at line 65 of file G4VGFlashSensitiveDetector.hh.

65{ return this != &right; }

◆ operator==()

G4bool G4VGFlashSensitiveDetector::operator== ( const G4VGFlashSensitiveDetector & right) const
inline

Definition at line 64 of file G4VGFlashSensitiveDetector.hh.

64{ return this == &right; }

◆ ProcessHits()

virtual G4bool G4VGFlashSensitiveDetector::ProcessHits ( G4GFlashSpot * aSpot,
G4TouchableHistory * ROhist )
protectedpure virtual

Referenced by Hit().


The documentation for this class was generated from the following file: