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

#include <G4VSensitiveDetector.hh>

+ Inheritance diagram for G4VSensitiveDetector:

Public Member Functions

 G4VSensitiveDetector (const G4String &name)
 
 G4VSensitiveDetector (const G4VSensitiveDetector &right)
 
G4VSensitiveDetectoroperator= (const G4VSensitiveDetector &right)
 
virtual ~G4VSensitiveDetector ()=default
 
G4bool operator== (const G4VSensitiveDetector &right) const
 
G4bool operator!= (const G4VSensitiveDetector &right) const
 
virtual void Initialize (G4HCofThisEvent *)
 
virtual void EndOfEvent (G4HCofThisEvent *)
 
virtual void clear ()
 
virtual void DrawAll ()
 
virtual void PrintAll ()
 
G4bool Hit (G4Step *aStep)
 
void SetROgeometry (G4VReadOutGeometry *value)
 
void SetFilter (G4VSDFilter *value)
 
G4int GetNumberOfCollections () const
 
const G4StringGetCollectionName (G4int id) const
 
void SetVerboseLevel (G4int vl)
 
void Activate (G4bool activeFlag)
 
G4bool isActive () const
 
const G4StringGetName () const
 
const G4StringGetPathName () const
 
const G4StringGetFullPathName () const
 
G4VReadOutGeometryGetROgeometry () const
 
G4VSDFilterGetFilter () const
 
virtual G4VSensitiveDetectorClone () const
 

Protected Member Functions

virtual G4bool ProcessHits (G4Step *aStep, G4TouchableHistory *ROhist)=0
 
virtual G4int GetCollectionID (G4int i)
 

Protected Attributes

G4CollectionNameVector collectionName
 
G4String SensitiveDetectorName
 
G4String thePathName
 
G4String fullPathName
 
G4int verboseLevel {0}
 
G4bool active {true}
 
G4VReadOutGeometryROgeometry {nullptr}
 
G4VSDFilterfilter {nullptr}
 

Detailed Description

Definition at line 50 of file G4VSensitiveDetector.hh.

Constructor & Destructor Documentation

◆ G4VSensitiveDetector() [1/2]

G4VSensitiveDetector::G4VSensitiveDetector ( const G4String & name)
explicit

Definition at line 33 of file G4VSensitiveDetector.cc.

34{
35 std::size_t sLast = name.rfind('/');
36 if (sLast == std::string::npos) { // detector name only
38 thePathName = "/";
39 }
40 else { // name conatin the directory path
42 SensitiveDetectorName.erase(0, sLast + 1);
44 thePathName.erase(sLast + 1);
45 if (thePathName[0] != '/') thePathName.insert(0, "/");
46 }
48}
const char * name(G4int ptype)

Referenced by Clone(), G4MultiFunctionalDetector::G4MultiFunctionalDetector(), G4VSensitiveDetector(), operator!=(), operator=(), operator==(), and ~G4VSensitiveDetector().

◆ G4VSensitiveDetector() [2/2]

G4VSensitiveDetector::G4VSensitiveDetector ( const G4VSensitiveDetector & right)

◆ ~G4VSensitiveDetector()

virtual G4VSensitiveDetector::~G4VSensitiveDetector ( )
virtualdefault

Member Function Documentation

◆ Activate()

void G4VSensitiveDetector::Activate ( G4bool activeFlag)
inline

Definition at line 105 of file G4VSensitiveDetector.hh.

105{ active = activeFlag; }

Referenced by G4SDStructure::Activate().

◆ clear()

virtual void G4VSensitiveDetector::clear ( )
inlinevirtual

Reimplemented in G4MultiFunctionalDetector, and G4MultiSensitiveDetector.

Definition at line 74 of file G4VSensitiveDetector.hh.

74{}

◆ Clone()

G4VSensitiveDetector * G4VSensitiveDetector::Clone ( ) const
virtual

Reimplemented in G4MultiSensitiveDetector.

Definition at line 61 of file G4VSensitiveDetector.cc.

62{
64 msg << "Derived class does not implement cloning,\n"
65 << "but Clone method called.\n"
66 << "Cannot continue;";
67 G4Exception("G4VSensitiveDetector::Clone", "Det0010", FatalException, msg);
68 return nullptr;
69}
@ FatalException
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription

Referenced by G4VUserDetectorConstruction::CloneSD().

◆ DrawAll()

virtual void G4VSensitiveDetector::DrawAll ( )
inlinevirtual

Reimplemented in G4MultiFunctionalDetector, and G4MultiSensitiveDetector.

Definition at line 76 of file G4VSensitiveDetector.hh.

76{}

◆ EndOfEvent()

virtual void G4VSensitiveDetector::EndOfEvent ( G4HCofThisEvent * )
inlinevirtual

Reimplemented in G4MultiFunctionalDetector, and G4MultiSensitiveDetector.

Definition at line 68 of file G4VSensitiveDetector.hh.

68{}

◆ GetCollectionID()

G4int G4VSensitiveDetector::GetCollectionID ( G4int i)
protectedvirtual

Reimplemented in G4MultiSensitiveDetector.

Definition at line 94 of file G4VSensitiveDetector.cc.

95{
98}
static G4SDManager * GetSDMpointer()
G4int GetCollectionID(const G4String &colName)
G4CollectionNameVector collectionName

◆ GetCollectionName()

const G4String & G4VSensitiveDetector::GetCollectionName ( G4int id) const
inline

Definition at line 103 of file G4VSensitiveDetector.hh.

103{ return collectionName[id]; }

Referenced by G4SDManager::AddNewDetector(), and G4HCtable::GetCollectionID().

◆ GetFilter()

G4VSDFilter * G4VSensitiveDetector::GetFilter ( ) const
inline

Definition at line 111 of file G4VSensitiveDetector.hh.

111{ return filter; }

◆ GetFullPathName()

const G4String & G4VSensitiveDetector::GetFullPathName ( ) const
inline

Definition at line 109 of file G4VSensitiveDetector.hh.

109{ return fullPathName; }

Referenced by G4VUserDetectorConstruction::CloneSD().

◆ GetName()

◆ GetNumberOfCollections()

G4int G4VSensitiveDetector::GetNumberOfCollections ( ) const
inline

Definition at line 102 of file G4VSensitiveDetector.hh.

102{ return G4int(collectionName.size()); }
int G4int
Definition G4Types.hh:85

Referenced by G4SDManager::AddNewDetector(), and G4HCtable::GetCollectionID().

◆ GetPathName()

const G4String & G4VSensitiveDetector::GetPathName ( ) const
inline

Definition at line 108 of file G4VSensitiveDetector.hh.

108{ return thePathName; }

Referenced by G4SDManager::AddNewDetector().

◆ GetROgeometry()

G4VReadOutGeometry * G4VSensitiveDetector::GetROgeometry ( ) const
inline

◆ Hit()

G4bool G4VSensitiveDetector::Hit ( G4Step * aStep)
inline

Definition at line 83 of file G4VSensitiveDetector.hh.

84 {
85 G4TouchableHistory* ROhis = nullptr;
86 if (! isActive()) return false;
87 if (filter != nullptr) {
88 if (! (filter->Accept(aStep))) return false;
89 }
90 if (ROgeometry != nullptr) {
91 if (! (ROgeometry->CheckROVolume(aStep, ROhis))) return false;
92 }
93 return ProcessHits(aStep, ROhis);
94 }
virtual G4bool ProcessHits(G4Step *aStep, G4TouchableHistory *ROhist)=0

Referenced by G4ParallelWorldProcess::AtRestDoIt(), G4ParallelWorldScoringProcess::AtRestDoIt(), G4FastSimHitMaker::make(), GFlashHitMaker::make(), G4ParallelWorldProcess::PostStepDoIt(), G4ParallelWorldScoringProcess::PostStepDoIt(), and G4ScoreSplittingProcess::PostStepDoIt().

◆ Initialize()

virtual void G4VSensitiveDetector::Initialize ( G4HCofThisEvent * )
inlinevirtual

Reimplemented in G4MultiFunctionalDetector, and G4MultiSensitiveDetector.

Definition at line 67 of file G4VSensitiveDetector.hh.

67{}

◆ isActive()

G4bool G4VSensitiveDetector::isActive ( ) const
inline

Definition at line 106 of file G4VSensitiveDetector.hh.

106{ return active; }

Referenced by G4VGFlashSensitiveDetector::Hit(), Hit(), and G4SDStructure::ListTree().

◆ operator!=()

G4bool G4VSensitiveDetector::operator!= ( const G4VSensitiveDetector & right) const

Definition at line 89 of file G4VSensitiveDetector.cc.

90{
91 return (this != &right);
92}

◆ operator=()

G4VSensitiveDetector & G4VSensitiveDetector::operator= ( const G4VSensitiveDetector & right)

Definition at line 71 of file G4VSensitiveDetector.cc.

72{
73 if (this == &right) return *this;
78 active = right.active;
79 ROgeometry = right.ROgeometry;
80 filter = right.filter;
81 return *this;
82}

◆ operator==()

G4bool G4VSensitiveDetector::operator== ( const G4VSensitiveDetector & right) const

Definition at line 84 of file G4VSensitiveDetector.cc.

85{
86 return (this == &right);
87}

◆ PrintAll()

virtual void G4VSensitiveDetector::PrintAll ( )
inlinevirtual

Reimplemented in G4MultiFunctionalDetector, and G4MultiSensitiveDetector.

Definition at line 77 of file G4VSensitiveDetector.hh.

77{}

◆ ProcessHits()

virtual G4bool G4VSensitiveDetector::ProcessHits ( G4Step * aStep,
G4TouchableHistory * ROhist )
protectedpure virtual

Implemented in G4MultiFunctionalDetector, and G4MultiSensitiveDetector.

Referenced by Hit().

◆ SetFilter()

void G4VSensitiveDetector::SetFilter ( G4VSDFilter * value)
inline

Definition at line 100 of file G4VSensitiveDetector.hh.

100{ filter = value; }

◆ SetROgeometry()

void G4VSensitiveDetector::SetROgeometry ( G4VReadOutGeometry * value)
inline

Definition at line 97 of file G4VSensitiveDetector.hh.

97{ ROgeometry = value; }

◆ SetVerboseLevel()

void G4VSensitiveDetector::SetVerboseLevel ( G4int vl)
inline

Definition at line 104 of file G4VSensitiveDetector.hh.

104{ verboseLevel = vl; }

Member Data Documentation

◆ active

G4bool G4VSensitiveDetector::active {true}
protected

◆ collectionName

G4CollectionNameVector G4VSensitiveDetector::collectionName
protected

◆ filter

G4VSDFilter* G4VSensitiveDetector::filter {nullptr}
protected

◆ fullPathName

G4String G4VSensitiveDetector::fullPathName
protected

◆ ROgeometry

G4VReadOutGeometry* G4VSensitiveDetector::ROgeometry {nullptr}
protected

◆ SensitiveDetectorName

◆ thePathName

G4String G4VSensitiveDetector::thePathName
protected

◆ verboseLevel

G4int G4VSensitiveDetector::verboseLevel {0}
protected

Definition at line 141 of file G4VSensitiveDetector.hh.

141{0};

Referenced by G4VSensitiveDetector(), operator=(), and SetVerboseLevel().


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