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

#include <G4PSTrackCounter.hh>

+ Inheritance diagram for G4PSTrackCounter:

Public Member Functions

 G4PSTrackCounter (G4String name, G4int direction, G4int depth=0)
 
 ~G4PSTrackCounter () override=default
 
void Weighted (G4bool flg=true)
 
void Initialize (G4HCofThisEvent *) override
 
void clear () override
 
void PrintAll () override
 
virtual void SetUnit (const G4String &unit)
 
- Public Member Functions inherited from G4VPrimitivePlotter
 ~G4VPrimitivePlotter () override=default
 
void Plot (G4int copyNo, G4int histID)
 
G4int GetNumberOfHist () const
 
 G4VPrimitiveScorer (G4String name, G4int depth=0)
 
- Public Member Functions inherited from G4VPrimitiveScorer
 G4VPrimitiveScorer (G4String name, G4int depth=0)
 
virtual ~G4VPrimitiveScorer ()=default
 
G4int GetCollectionID (G4int)
 
virtual void EndOfEvent (G4HCofThisEvent *)
 
virtual void DrawAll ()
 
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
G4VSolidComputeSolid (G4Step *aStep, G4int replicaIdx)
 
G4VSolidComputeCurrentSolid (G4Step *aStep)
 
virtual G4int GetIndex (G4Step *)
 
void CheckAndSetUnit (const G4String &unit, const G4String &category)
 

Additional Inherited Members

- Protected Attributes inherited from G4VPrimitivePlotter
std::map< G4int, G4inthitIDMap
 
- Protected Attributes inherited from G4VPrimitiveScorer
G4String primitiveName
 
G4MultiFunctionalDetectordetector {nullptr}
 
G4VSDFilterfilter {nullptr}
 
G4int verboseLevel {0}
 
G4int indexDepth
 
G4String unitName {"NoUnit"}
 
G4double unitValue {1.0}
 
G4int fNi {0}
 
G4int fNj {0}
 
G4int fNk {0}
 

Detailed Description

Definition at line 48 of file G4PSTrackCounter.hh.

Constructor & Destructor Documentation

◆ G4PSTrackCounter()

G4PSTrackCounter::G4PSTrackCounter ( G4String name,
G4int direction,
G4int depth = 0 )

Definition at line 42 of file G4PSTrackCounter.cc.

43 : G4VPrimitivePlotter(name, depth)
44 , fDirection(direction)
45{
46 SetUnit("");
47}
virtual void SetUnit(const G4String &unit)

◆ ~G4PSTrackCounter()

G4PSTrackCounter::~G4PSTrackCounter ( )
overridedefault

Member Function Documentation

◆ clear()

void G4PSTrackCounter::clear ( )
overridevirtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 114 of file G4PSTrackCounter.cc.

114{ EvtMap->clear(); }

◆ Initialize()

void G4PSTrackCounter::Initialize ( G4HCofThisEvent * HCE)
overridevirtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 103 of file G4PSTrackCounter.cc.

104{
105 EvtMap = new G4THitsMap<G4double>(detector->GetName(), GetName());
106 if(HCID < 0)
107 {
108 HCID = GetCollectionID(0);
109 }
110 HCE->AddHitsCollection(HCID, (G4VHitsCollection*) EvtMap);
111 // G4cout << "----- PS Initialize " << G4endl;
112}
void AddHitsCollection(G4int HCID, G4VHitsCollection *aHC)
G4String GetName() const
G4MultiFunctionalDetector * detector

◆ PrintAll()

void G4PSTrackCounter::PrintAll ( )
overridevirtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 116 of file G4PSTrackCounter.cc.

117{
118 G4cout << " MultiFunctionalDet " << detector->GetName() << G4endl;
119 G4cout << " PrimitiveScorer " << GetName() << G4endl;
120 G4cout << " Number of entries " << EvtMap->entries() << G4endl;
121 for(const auto& [copy, count] : *(EvtMap->GetMap()))
122 {
123 G4cout << " copy no.: " << copy
124 << " track count: " << *(count) << " [tracks] " << G4endl;
125 }
126}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout
Map_t * GetMap() const
size_t entries() const
void copy(G4double dst[], const G4double src[], std::size_t size=G4FieldTrack::ncompSVEC)

◆ ProcessHits()

G4bool G4PSTrackCounter::ProcessHits ( G4Step * aStep,
G4TouchableHistory *  )
overrideprotectedvirtual

Implements G4VPrimitiveScorer.

Definition at line 49 of file G4PSTrackCounter.cc.

50{
51 G4StepPoint* preStep = aStep->GetPreStepPoint();
52 G4StepPoint* posStep = aStep->GetPostStepPoint();
53 G4bool IsEnter = preStep->GetStepStatus() == fGeomBoundary;
54 G4bool IsExit = posStep->GetStepStatus() == fGeomBoundary;
55
56 // Regular : count in prestep volume.
57 G4int index = GetIndex(aStep);
58
59 // G4cout << " trk " << aStep->GetTrack()->GetTrackID()
60 // << " index " << index << " In " << IsEnter << " Out " <<IsExit
61 // << " PreStatus " << preStep->GetStepStatus()
62 // << " PostStatus " << posStep->GetStepStatus()
63 // << " w " << aStep->GetPreStepPoint()->GetWeight()
64 // << G4endl;
65
66 G4bool flag = false;
67
68 if(IsEnter && fDirection == fCurrent_In)
69 flag = true;
70 else if(IsExit && fDirection == fCurrent_Out)
71 flag = true;
72 else if((IsExit || IsEnter) && fDirection == fCurrent_InOut)
73 flag = true;
74
75 if(flag)
76 {
77 // G4cout << " Count " << G4endl;
78 G4double val = 1.0;
79 if(weighted)
80 val *= aStep->GetPreStepPoint()->GetWeight();
81 EvtMap->add(index, val);
82
83 if(!hitIDMap.empty() && hitIDMap.find(index) != hitIDMap.cend())
84 {
85 auto filler = G4VScoreHistFiller::Instance();
86 if(filler == nullptr)
87 {
89 "G4PSTrackCounter::ProcessHits", "SCORER0123", JustWarning,
90 "G4TScoreHistFiller is not instantiated!! Histogram is not filled.");
91 }
92 else
93 {
94 filler->FillH1(hitIDMap[index],
95 aStep->GetPreStepPoint()->GetKineticEnergy(), val);
96 }
97 }
98 }
99
100 return true;
101}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
@ fCurrent_Out
@ fCurrent_In
@ fCurrent_InOut
@ fGeomBoundary
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
G4StepStatus GetStepStatus() const
G4double GetKineticEnergy() const
G4double GetWeight() const
G4StepPoint * GetPreStepPoint() const
G4StepPoint * GetPostStepPoint() const
std::map< G4int, G4int > hitIDMap
virtual G4int GetIndex(G4Step *)
static G4VScoreHistFiller * Instance()
size_t add(const G4int &key, U *&aHit) const

◆ SetUnit()

void G4PSTrackCounter::SetUnit ( const G4String & unit)
virtual

Definition at line 128 of file G4PSTrackCounter.cc.

129{
130 if(unit.empty())
131 {
132 unitName = unit;
133 unitValue = 1.0;
134 }
135 else
136 {
137 G4String msg = "Invalid unit [" + unit + "] (Current unit is [" +
138 GetUnit() + "] ) for " + GetName();
139 G4Exception("G4PSTrackCounter::SetUnit", "DetPS0018", JustWarning, msg);
140 }
141}
const G4String & GetUnit() const

Referenced by G4PSTrackCounter().

◆ Weighted()

void G4PSTrackCounter::Weighted ( G4bool flg = true)
inline

Definition at line 54 of file G4PSTrackCounter.hh.

54{ weighted = flg; }

Referenced by G4ScoreQuantityMessenger::SetNewValue().


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