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

#include <G4MultiFunctionalDetector.hh>

+ Inheritance diagram for G4MultiFunctionalDetector:

Public Member Functions

 G4MultiFunctionalDetector (const G4String &)
 
 ~G4MultiFunctionalDetector () override
 
G4bool RegisterPrimitive (G4VPrimitiveScorer *)
 
G4bool RemovePrimitive (G4VPrimitiveScorer *)
 
G4int GetNumberOfPrimitives () const
 
G4VPrimitiveScorerGetPrimitive (G4int id) const
 
void Initialize (G4HCofThisEvent *) override
 
void EndOfEvent (G4HCofThisEvent *) override
 
void clear () override
 
void DrawAll () override
 
void PrintAll () override
 
- Public Member Functions inherited from G4VSensitiveDetector
 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
 
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

G4bool ProcessHits (G4Step *, G4TouchableHistory *) override
 
- Protected Member Functions inherited from G4VSensitiveDetector
virtual G4int GetCollectionID (G4int i)
 

Protected Attributes

std::vector< G4VPrimitiveScorer * > primitives
 
- Protected Attributes inherited from G4VSensitiveDetector
G4CollectionNameVector collectionName
 
G4String SensitiveDetectorName
 
G4String thePathName
 
G4String fullPathName
 
G4int verboseLevel {0}
 
G4bool active {true}
 
G4VReadOutGeometryROgeometry {nullptr}
 
G4VSDFilterfilter {nullptr}
 

Detailed Description

Definition at line 48 of file G4MultiFunctionalDetector.hh.

Constructor & Destructor Documentation

◆ G4MultiFunctionalDetector()

G4MultiFunctionalDetector::G4MultiFunctionalDetector ( const G4String & name)

Definition at line 38 of file G4MultiFunctionalDetector.cc.

40{
41 ;
42}
G4VSensitiveDetector(const G4String &name)

◆ ~G4MultiFunctionalDetector()

G4MultiFunctionalDetector::~G4MultiFunctionalDetector ( )
override

Definition at line 44 of file G4MultiFunctionalDetector.cc.

45{
46 for (auto pr : primitives)
47 delete pr;
48 primitives.clear();
49}
std::vector< G4VPrimitiveScorer * > primitives

Member Function Documentation

◆ clear()

void G4MultiFunctionalDetector::clear ( )
overridevirtual

Reimplemented from G4VSensitiveDetector.

Definition at line 111 of file G4MultiFunctionalDetector.cc.

112{
113 for (auto pr : primitives) {
114 pr->clear();
115 }
116}

◆ DrawAll()

void G4MultiFunctionalDetector::DrawAll ( )
overridevirtual

Reimplemented from G4VSensitiveDetector.

Definition at line 118 of file G4MultiFunctionalDetector.cc.

119{
120 for (auto pr : primitives) {
121 pr->DrawAll();
122 }
123}

◆ EndOfEvent()

void G4MultiFunctionalDetector::EndOfEvent ( G4HCofThisEvent * HC)
overridevirtual

Reimplemented from G4VSensitiveDetector.

Definition at line 104 of file G4MultiFunctionalDetector.cc.

105{
106 for (auto pr : primitives) {
107 pr->EndOfEvent(HC);
108 }
109}

◆ GetNumberOfPrimitives()

G4int G4MultiFunctionalDetector::GetNumberOfPrimitives ( ) const
inline

Definition at line 58 of file G4MultiFunctionalDetector.hh.

58{ return G4int(primitives.size()); }
int G4int
Definition G4Types.hh:85

◆ GetPrimitive()

G4VPrimitiveScorer * G4MultiFunctionalDetector::GetPrimitive ( G4int id) const
inline

Definition at line 60 of file G4MultiFunctionalDetector.hh.

60{ return primitives[id]; }

◆ Initialize()

void G4MultiFunctionalDetector::Initialize ( G4HCofThisEvent * HC)
overridevirtual

Reimplemented from G4VSensitiveDetector.

Definition at line 97 of file G4MultiFunctionalDetector.cc.

98{
99 for (auto pr : primitives) {
100 pr->Initialize(HC);
101 }
102}

◆ PrintAll()

void G4MultiFunctionalDetector::PrintAll ( )
overridevirtual

Reimplemented from G4VSensitiveDetector.

Definition at line 125 of file G4MultiFunctionalDetector.cc.

126{
127 for (auto pr : primitives) {
128 pr->PrintAll();
129 }
130}

◆ ProcessHits()

G4bool G4MultiFunctionalDetector::ProcessHits ( G4Step * aStep,
G4TouchableHistory * aTH )
overrideprotectedvirtual

Implements G4VSensitiveDetector.

Definition at line 51 of file G4MultiFunctionalDetector.cc.

52{
53 if (aStep->GetStepLength() > 0. || aStep->GetTotalEnergyDeposit() > 0.) {
54 for (auto pr : primitives) {
55 pr->HitPrimitive(aStep, aTH);
56 }
57 }
58 return true;
59}
G4double GetStepLength() const
G4double GetTotalEnergyDeposit() const

◆ RegisterPrimitive()

G4bool G4MultiFunctionalDetector::RegisterPrimitive ( G4VPrimitiveScorer * aPS)

Definition at line 61 of file G4MultiFunctionalDetector.cc.

62{
63 for (auto pr : primitives) {
64 if (pr == aPS) {
66 ED << "Primitive <" << aPS->GetName() << "> is already defined in <" << SensitiveDetectorName
67 << ">." << G4endl << "Method RegisterPrimitive() is ignored." << G4endl;
68 G4Exception("G4MultiFunctionalDetector::RegisterPrimitive", "Det0101", JustWarning, ED);
69 return false;
70 }
71 }
72 primitives.push_back(aPS);
74 collectionName.insert(aPS->GetName());
75 if (G4SDManager::GetSDMpointer()->FindSensitiveDetector(SensitiveDetectorName, false) != nullptr)
76 {
77 // This G4MultiFunctionalDetector has already been registered to
78 // G4SDManager. Make sure this new primitive is registered as well.
80 }
81 return true;
82}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::ostringstream G4ExceptionDescription
#define G4endl
Definition G4ios.hh:67
static G4SDManager * GetSDMpointer()
void AddNewCollection(const G4String &SDname, const G4String &DCname)
void SetMultiFunctionalDetector(G4MultiFunctionalDetector *d)
const G4String & GetName() const
G4CollectionNameVector collectionName

◆ RemovePrimitive()

G4bool G4MultiFunctionalDetector::RemovePrimitive ( G4VPrimitiveScorer * aPS)

Definition at line 84 of file G4MultiFunctionalDetector.cc.

85{
86 auto pr = std::find(primitives.begin(), primitives.end(), aPS);
87 if (pr != primitives.end()) {
88 primitives.erase(pr);
89 aPS->SetMultiFunctionalDetector(nullptr);
90 return true;
91 }
92 G4cerr << "Primitive <" << aPS->GetName() << "> is not defined in <" << SensitiveDetectorName
93 << ">." << G4endl << "Method RemovePrimitive() is ignored." << G4endl;
94 return false;
95}
G4GLOB_DLL std::ostream G4cerr

Member Data Documentation

◆ primitives


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