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

#include <G4PSNofStep.hh>

+ Inheritance diagram for G4PSNofStep:

Public Member Functions

 G4PSNofStep (G4String name, G4int depth=0)
 
 ~G4PSNofStep () override=default
 
void Initialize (G4HCofThisEvent *) override
 
void clear () override
 
void PrintAll () override
 
virtual void SetUnit (const G4String &unit)
 
void SetBoundaryFlag (G4bool flg=true)
 
- Public Member Functions inherited from G4VPrimitivePlotter
 G4VPrimitivePlotter (G4String name, G4int depth=0)
 
virtual ~G4VPrimitivePlotter ()
 
void Plot (G4int copyNo, G4int histID)
 
G4int GetNumberOfHist () const
 
- Public Member Functions inherited from G4VPrimitiveScorer
 G4VPrimitiveScorer (G4String name, G4int depth=0)
 
virtual ~G4VPrimitiveScorer ()
 
G4int GetCollectionID (G4int)
 
virtual void Initialize (G4HCofThisEvent *)
 
virtual void EndOfEvent (G4HCofThisEvent *)
 
virtual void clear ()
 
virtual void DrawAll ()
 
virtual void PrintAll ()
 
void SetUnit (const G4String &unit)
 
const G4StringGetUnit () const
 
G4double GetUnitValue () const
 
void SetMultiFunctionalDetector (G4MultiFunctionalDetector *d)
 
G4MultiFunctionalDetectorGetMultiFunctionalDetector () const
 
G4String GetName () const
 
void SetFilter (G4VSDFilter *f)
 
G4VSDFilterGetFilter () const
 
void SetVerboseLevel (G4int vl)
 
G4int GetVerboseLevel () const
 
void SetNijk (G4int i, G4int j, G4int k)
 

Protected Member Functions

G4bool ProcessHits (G4Step *, G4TouchableHistory *) override
 
- Protected Member Functions inherited from G4VPrimitiveScorer
virtual G4bool ProcessHits (G4Step *, G4TouchableHistory *)=0
 
virtual G4int GetIndex (G4Step *)
 
void CheckAndSetUnit (const G4String &unit, const G4String &category)
 
G4VSolidComputeSolid (G4Step *aStep, G4int replicaIdx)
 
G4VSolidComputeCurrentSolid (G4Step *aStep)
 

Additional Inherited Members

- Protected Attributes inherited from G4VPrimitivePlotter
std::map< G4int, G4inthitIDMap
 
- Protected Attributes inherited from G4VPrimitiveScorer
G4String primitiveName
 
G4MultiFunctionalDetectordetector
 
G4VSDFilterfilter
 
G4int verboseLevel
 
G4int indexDepth
 
G4String unitName
 
G4double unitValue
 
G4int fNi
 
G4int fNj
 
G4int fNk
 

Detailed Description

Definition at line 46 of file G4PSNofStep.hh.

Constructor & Destructor Documentation

◆ G4PSNofStep()

G4PSNofStep::G4PSNofStep ( G4String  name,
G4int  depth = 0 
)

Definition at line 43 of file G4PSNofStep.cc.

44 : G4VPrimitivePlotter(name, depth)
45{
46 SetUnit("");
47}
virtual void SetUnit(const G4String &unit)
Definition: G4PSNofStep.cc:102

◆ ~G4PSNofStep()

G4PSNofStep::~G4PSNofStep ( )
overridedefault

Member Function Documentation

◆ clear()

void G4PSNofStep::clear ( )
overridevirtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 88 of file G4PSNofStep.cc.

88{ EvtMap->clear(); }
void clear()
Definition: G4THitsMap.hh:524

◆ Initialize()

void G4PSNofStep::Initialize ( G4HCofThisEvent HCE)
overridevirtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 78 of file G4PSNofStep.cc.

79{
80 EvtMap = new G4THitsMap<G4double>(detector->GetName(), GetName());
81 if(HCID < 0)
82 {
83 HCID = GetCollectionID(0);
84 }
85 HCE->AddHitsCollection(HCID, (G4VHitsCollection*) EvtMap);
86}
void AddHitsCollection(G4int HCID, G4VHitsCollection *aHC)
G4String GetName() const
G4MultiFunctionalDetector * detector
G4int GetCollectionID(G4int)

◆ PrintAll()

void G4PSNofStep::PrintAll ( )
overridevirtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 90 of file G4PSNofStep.cc.

91{
92 G4cout << " MultiFunctionalDet " << detector->GetName() << G4endl;
93 G4cout << " PrimitiveScorer " << GetName() << G4endl;
94 G4cout << " Number of entries " << EvtMap->entries() << G4endl;
95 for(const auto& [copy, nsteps] : *(EvtMap->GetMap()))
96 {
97 G4cout << " copy no.: " << copy
98 << " num of step: " << *(nsteps) << " [steps] " << G4endl;
99 }
100}
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
Map_t * GetMap() const
Definition: G4THitsMap.hh:155
size_t entries() const
Definition: G4THitsMap.hh:158
void copy(G4double dst[], const G4double src[], std::size_t size=G4FieldTrack::ncompSVEC)
Definition: G4FieldUtils.cc:98

◆ ProcessHits()

G4bool G4PSNofStep::ProcessHits ( G4Step aStep,
G4TouchableHistory  
)
overrideprotectedvirtual

Implements G4VPrimitiveScorer.

Definition at line 49 of file G4PSNofStep.cc.

50{
51 if(boundaryFlag)
52 {
53 if(aStep->GetStepLength() == 0.)
54 return false;
55 }
56 G4int index = GetIndex(aStep);
57 G4double val = 1.0;
58 EvtMap->add(index, val);
59
60 if(!hitIDMap.empty() && hitIDMap.find(index) != hitIDMap.cend())
61 {
62 auto filler = G4VScoreHistFiller::Instance();
63 if(filler == nullptr)
64 {
66 "G4PSNofStep::ProcessHits", "SCORER0123", JustWarning,
67 "G4TScoreHistFiller is not instantiated!! Histogram is not filled.");
68 }
69 else
70 {
71 filler->FillH1(hitIDMap[index], aStep->GetStepLength(), val);
72 }
73 }
74
75 return true;
76}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.cc:59
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
G4double GetStepLength() const
std::map< G4int, G4int > hitIDMap
virtual G4int GetIndex(G4Step *)
static G4VScoreHistFiller * Instance()
size_t add(const G4int &key, U *&aHit) const
Definition: G4THitsMap.hh:177

◆ SetBoundaryFlag()

void G4PSNofStep::SetBoundaryFlag ( G4bool  flg = true)
inline

Definition at line 57 of file G4PSNofStep.hh.

57{ boundaryFlag = flg; }

Referenced by G4ScoreQuantityMessenger::SetNewValue().

◆ SetUnit()

void G4PSNofStep::SetUnit ( const G4String unit)
virtual

Definition at line 102 of file G4PSNofStep.cc.

103{
104 if(unit.empty())
105 {
106 unitName = unit;
107 unitValue = 1.0;
108 }
109 else
110 {
111 G4String msg = "Invalid unit [" + unit + "] (Current unit is [" +
112 GetUnit() + "] ) for " + GetName();
113 G4Exception("G4PSNofStep::SetUnit", "DetPS0011", JustWarning, msg);
114 }
115}
const G4String & GetUnit() const

Referenced by G4PSNofStep().


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