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

#include <G4PSDoseDeposit.hh>

+ Inheritance diagram for G4PSDoseDeposit:

Public Member Functions

 G4PSDoseDeposit (G4String name, G4int depth=0)
 
 G4PSDoseDeposit (G4String name, const G4String &unit, G4int depth=0)
 
virtual ~G4PSDoseDeposit ()
 
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 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

virtual G4bool ProcessHits (G4Step *, G4TouchableHistory *)
 
virtual G4double ComputeVolume (G4Step *, G4int idx)
 
- 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 G4PSDoseDeposit.hh.

Constructor & Destructor Documentation

◆ G4PSDoseDeposit() [1/2]

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

Definition at line 48 of file G4PSDoseDeposit.cc.

49 :G4VPrimitivePlotter(name,depth),HCID(-1),EvtMap(0)
50{
51 SetUnit("Gy");
52}
virtual void SetUnit(const G4String &unit)

◆ G4PSDoseDeposit() [2/2]

G4PSDoseDeposit::G4PSDoseDeposit ( G4String  name,
const G4String unit,
G4int  depth = 0 
)

Definition at line 54 of file G4PSDoseDeposit.cc.

56 :G4VPrimitivePlotter(name,depth),HCID(-1),EvtMap(0)
57{
58 SetUnit(unit);
59}

◆ ~G4PSDoseDeposit()

G4PSDoseDeposit::~G4PSDoseDeposit ( )
virtual

Definition at line 61 of file G4PSDoseDeposit.cc.

62{;}

Member Function Documentation

◆ clear()

void G4PSDoseDeposit::clear ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 109 of file G4PSDoseDeposit.cc.

110{
111 EvtMap->clear();
112}
void clear()
Definition: G4THitsMap.hh:537

◆ ComputeVolume()

G4double G4PSDoseDeposit::ComputeVolume ( G4Step aStep,
G4int  idx 
)
protectedvirtual

Reimplemented in G4PSDoseDepositForCylinder3D.

Definition at line 137 of file G4PSDoseDeposit.cc.

138{
139 G4VSolid* solid = ComputeSolid(aStep, idx);
140 return solid->GetCubicVolume();
141}
G4VSolid * ComputeSolid(G4Step *aStep, G4int replicaIdx)
virtual G4double GetCubicVolume()
Definition: G4VSolid.cc:176

Referenced by ProcessHits().

◆ DrawAll()

void G4PSDoseDeposit::DrawAll ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 114 of file G4PSDoseDeposit.cc.

115{;}

◆ EndOfEvent()

void G4PSDoseDeposit::EndOfEvent ( G4HCofThisEvent )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 106 of file G4PSDoseDeposit.cc.

107{;}

◆ Initialize()

void G4PSDoseDeposit::Initialize ( G4HCofThisEvent HCE)
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 98 of file G4PSDoseDeposit.cc.

99{
101 GetName());
102 if(HCID < 0) {HCID = GetCollectionID(0);}
103 HCE->AddHitsCollection(HCID, (G4VHitsCollection*)EvtMap);
104}
void AddHitsCollection(G4int HCID, G4VHitsCollection *aHC)
G4String GetName() const
G4MultiFunctionalDetector * GetMultiFunctionalDetector() const
G4int GetCollectionID(G4int)

◆ PrintAll()

void G4PSDoseDeposit::PrintAll ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 117 of file G4PSDoseDeposit.cc.

118{
119 G4cout << " MultiFunctionalDet " << detector->GetName() << G4endl;
120 G4cout << " PrimitiveScorer " << GetName() << G4endl;
121 G4cout << " Number of entries " << EvtMap->entries() << G4endl;
122 std::map<G4int,G4double*>::iterator itr = EvtMap->GetMap()->begin();
123 for(; itr != EvtMap->GetMap()->end(); itr++) {
124 G4cout << " copy no.: " << itr->first
125 << " dose deposit: "
126 << *(itr->second)/GetUnitValue()
127 << " ["<<GetUnit() <<"]"
128 << G4endl;
129 }
130}
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
const G4String & GetUnit() const
G4MultiFunctionalDetector * detector
G4double GetUnitValue() const
Map_t * GetMap() const
Definition: G4THitsMap.hh:151
size_t entries() const
Definition: G4THitsMap.hh:155

◆ ProcessHits()

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

Implements G4VPrimitiveScorer.

Definition at line 64 of file G4PSDoseDeposit.cc.

65{
66 G4double edep = aStep->GetTotalEnergyDeposit();
67 if ( edep == 0. ) return FALSE;
68
70 (aStep->GetPreStepPoint()->GetTouchable()))
71 ->GetReplicaNumber(indexDepth);
72 G4double cubicVolume = ComputeVolume(aStep, idx);
73
74 G4double density = aStep->GetTrack()->GetStep()->GetPreStepPoint()->GetMaterial()->GetDensity();
75 G4double dose = edep / ( density * cubicVolume );
76 G4double wei = aStep->GetPreStepPoint()->GetWeight();
77 G4int index = GetIndex(aStep);
78 G4double dosew = dose*wei;
79 EvtMap->add(index,dosew);
80
81 if(hitIDMap.size()>0 && hitIDMap.find(index)!=hitIDMap.end())
82 {
83 auto filler = G4VScoreHistFiller::Instance();
84 if(!filler)
85 {
86 G4Exception("G4PSDoseDeposit::ProcessHits","SCORER0123",JustWarning,
87 "G4TScoreHistFiller is not instantiated!! Histogram is not filled.");
88 }
89 else
90 {
91 filler->FillH1(hitIDMap[index],dose,wei);
92 }
93 }
94
95 return TRUE;
96}
@ JustWarning
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
Definition: G4Exception.cc:35
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
#define TRUE
Definition: Globals.hh:27
#define FALSE
Definition: Globals.hh:23
G4double GetDensity() const
Definition: G4Material.hh:178
virtual G4double ComputeVolume(G4Step *, G4int idx)
const G4VTouchable * GetTouchable() const
G4Material * GetMaterial() const
G4double GetWeight() const
G4Track * GetTrack() const
G4StepPoint * GetPreStepPoint() const
G4double GetTotalEnergyDeposit() const
const G4Step * GetStep() 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

◆ SetUnit()

void G4PSDoseDeposit::SetUnit ( const G4String unit)
virtual

Definition at line 132 of file G4PSDoseDeposit.cc.

133{
134 CheckAndSetUnit(unit,"Dose");
135}
void CheckAndSetUnit(const G4String &unit, const G4String &category)

Referenced by G4PSDoseDeposit(), G4PSDoseDeposit3D::G4PSDoseDeposit3D(), and G4ScoreQuantityMessenger::SetNewValue().


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