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

#include <G4PSPopulation.hh>

+ Inheritance diagram for G4PSPopulation:

Public Member Functions

 G4PSPopulation (G4String name, G4int depth=0)
 
virtual ~G4PSPopulation ()
 
void Weighted (G4bool flg=true)
 
virtual void Initialize (G4HCofThisEvent *)
 
virtual void EndOfEvent (G4HCofThisEvent *)
 
virtual void clear ()
 
virtual void DrawAll ()
 
virtual void PrintAll ()
 
virtual void SetUnit (const G4String &unit)
 
- 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

virtual G4bool ProcessHits (G4Step *, G4TouchableHistory *)
 
- 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 G4VPrimitiveScorer
G4String primitiveName
 
G4MultiFunctionalDetectordetector
 
G4VSDFilterfilter
 
G4int verboseLevel
 
G4int indexDepth
 
G4String unitName
 
G4double unitValue
 
G4int fNi
 
G4int fNj
 
G4int fNk
 

Detailed Description

Definition at line 48 of file G4PSPopulation.hh.

Constructor & Destructor Documentation

◆ G4PSPopulation()

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

Definition at line 41 of file G4PSPopulation.cc.

42 :G4VPrimitiveScorer(name,depth),HCID(-1),EvtMap(0),weighted(false)
43{
44 SetUnit("");
45}
virtual void SetUnit(const G4String &unit)

◆ ~G4PSPopulation()

G4PSPopulation::~G4PSPopulation ( )
virtual

Definition at line 47 of file G4PSPopulation.cc.

48{;}

Member Function Documentation

◆ clear()

void G4PSPopulation::clear ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 76 of file G4PSPopulation.cc.

76 {
77 EvtMap->clear();
78 fCellTrackLogger.clear();
79}
void clear()
Definition: G4THitsMap.hh:537

◆ DrawAll()

void G4PSPopulation::DrawAll ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 81 of file G4PSPopulation.cc.

82{;}

◆ EndOfEvent()

void G4PSPopulation::EndOfEvent ( G4HCofThisEvent )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 71 of file G4PSPopulation.cc.

72{
73 fCellTrackLogger.clear();
74}

◆ Initialize()

void G4PSPopulation::Initialize ( G4HCofThisEvent HCE)
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 64 of file G4PSPopulation.cc.

65{
67 if(HCID < 0) {HCID = GetCollectionID(0);}
68 HCE->AddHitsCollection(HCID, (G4VHitsCollection*)EvtMap);
69}
void AddHitsCollection(G4int HCID, G4VHitsCollection *aHC)
G4String GetName() const
G4MultiFunctionalDetector * detector
G4int GetCollectionID(G4int)

◆ PrintAll()

void G4PSPopulation::PrintAll ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 84 of file G4PSPopulation.cc.

85{
86 G4cout << " MultiFunctionalDet " << detector->GetName() << G4endl;
87 G4cout << " PrimitiveScorer " << GetName() << G4endl;
88 G4cout << " Number of entries " << EvtMap->entries() << G4endl;
89 std::map<G4int,G4double*>::iterator itr = EvtMap->GetMap()->begin();
90 for(; itr != EvtMap->GetMap()->end(); itr++) {
91 G4cout << " copy no.: " << itr->first
92 << " population: " << *(itr->second)/GetUnitValue()
93 << " [tracks]"
94 << G4endl;
95 }
96}
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
G4double GetUnitValue() const
Map_t * GetMap() const
Definition: G4THitsMap.hh:151
size_t entries() const
Definition: G4THitsMap.hh:155

◆ ProcessHits()

G4bool G4PSPopulation::ProcessHits ( G4Step aStep,
G4TouchableHistory  
)
protectedvirtual

Implements G4VPrimitiveScorer.

Definition at line 50 of file G4PSPopulation.cc.

51{
52
53 G4int index = GetIndex(aStep);
54 G4TrackLogger& tlog = fCellTrackLogger[index];
55 if (tlog.FirstEnterance(aStep->GetTrack()->GetTrackID())) {
56 G4double val = 1.0;
57 if(weighted) val *= aStep->GetPreStepPoint()->GetWeight();
58 EvtMap->add(index,val);
59 }
60
61 return TRUE;
62}
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
#define TRUE
Definition: Globals.hh:27
G4double GetWeight() const
G4Track * GetTrack() const
G4StepPoint * GetPreStepPoint() const
G4bool FirstEnterance(G4int trid)
G4int GetTrackID() const
virtual G4int GetIndex(G4Step *)
size_t add(const G4int &key, U *&aHit) const
Definition: G4THitsMap.hh:177

◆ SetUnit()

void G4PSPopulation::SetUnit ( const G4String unit)
virtual

Definition at line 98 of file G4PSPopulation.cc.

99{
100 if (unit == "" ){
101 unitName = unit;
102 unitValue = 1.0;
103 }else{
104 G4String msg = "Invalid unit ["+unit+"] (Current unit is [" +GetUnit()+"] ) for " + GetName();
105 G4Exception("G4PSPopulation::SetUnit","DetPS0014",JustWarning,msg);
106 }
107
108}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.cc:35
const G4String & GetUnit() const

Referenced by G4PSPopulation().

◆ Weighted()

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

Definition at line 60 of file G4PSPopulation.hh.

60{ weighted = flg; }

Referenced by G4ScoreQuantityMessenger::SetNewValue().


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