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

#include <G4PSEnergyDeposit.hh>

+ Inheritance diagram for G4PSEnergyDeposit:

Public Member Functions

 G4PSEnergyDeposit (G4String name, G4int depth=0)
 
 G4PSEnergyDeposit (G4String name, const G4String &unit, G4int depth=0)
 
virtual ~G4PSEnergyDeposit ()
 
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 *)
 
- 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 47 of file G4PSEnergyDeposit.hh.

Constructor & Destructor Documentation

◆ G4PSEnergyDeposit() [1/2]

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

Definition at line 43 of file G4PSEnergyDeposit.cc.

44 :G4VPrimitivePlotter(name,depth),HCID(-1),EvtMap(0)
45{
46 SetUnit("MeV");
47}
virtual void SetUnit(const G4String &unit)

◆ G4PSEnergyDeposit() [2/2]

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

Definition at line 49 of file G4PSEnergyDeposit.cc.

51 :G4VPrimitivePlotter(name,depth),HCID(-1),EvtMap(0)
52{
53 SetUnit(unit);
54}

◆ ~G4PSEnergyDeposit()

G4PSEnergyDeposit::~G4PSEnergyDeposit ( )
virtual

Definition at line 56 of file G4PSEnergyDeposit.cc.

57{;}

Member Function Documentation

◆ clear()

void G4PSEnergyDeposit::clear ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 96 of file G4PSEnergyDeposit.cc.

97{
98 EvtMap->clear();
99}
void clear()
Definition: G4THitsMap.hh:537

◆ DrawAll()

void G4PSEnergyDeposit::DrawAll ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 101 of file G4PSEnergyDeposit.cc.

102{;}

◆ EndOfEvent()

void G4PSEnergyDeposit::EndOfEvent ( G4HCofThisEvent )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 93 of file G4PSEnergyDeposit.cc.

94{;}

◆ Initialize()

void G4PSEnergyDeposit::Initialize ( G4HCofThisEvent HCE)
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 85 of file G4PSEnergyDeposit.cc.

86{
88 GetName());
89 if(HCID < 0) {HCID = GetCollectionID(0);}
90 HCE->AddHitsCollection(HCID, (G4VHitsCollection*)EvtMap);
91}
void AddHitsCollection(G4int HCID, G4VHitsCollection *aHC)
G4String GetName() const
G4MultiFunctionalDetector * GetMultiFunctionalDetector() const
G4int GetCollectionID(G4int)

◆ PrintAll()

void G4PSEnergyDeposit::PrintAll ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 104 of file G4PSEnergyDeposit.cc.

105{
106 G4cout << " MultiFunctionalDet " << detector->GetName() << G4endl;
107 G4cout << " PrimitiveScorer " << GetName() << G4endl;
108 G4cout << " Number of entries " << EvtMap->entries() << G4endl;
109 std::map<G4int,G4double*>::iterator itr = EvtMap->GetMap()->begin();
110 for(; itr != EvtMap->GetMap()->end(); itr++) {
111 G4cout << " copy no.: " << itr->first
112 << " energy deposit: "
113 << *(itr->second)/GetUnitValue()
114 << " [" << GetUnit()<<"]"
115 << G4endl;
116 }
117}
#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 G4PSEnergyDeposit::ProcessHits ( G4Step aStep,
G4TouchableHistory  
)
protectedvirtual

Implements G4VPrimitiveScorer.

Definition at line 59 of file G4PSEnergyDeposit.cc.

60{
61 G4double edep = aStep->GetTotalEnergyDeposit();
62 if ( edep == 0. ) return FALSE;
63 G4double wei = aStep->GetPreStepPoint()->GetWeight(); // (Particle Weight)
64 G4int index = GetIndex(aStep);
65 G4double edepwei = edep*wei;
66 EvtMap->add(index,edepwei);
67
68 if(hitIDMap.size()>0 && hitIDMap.find(index)!=hitIDMap.end())
69 {
70 auto filler = G4VScoreHistFiller::Instance();
71 if(!filler)
72 {
73 G4Exception("G4PSEnergyDeposit::ProcessHits","SCORER0123",JustWarning,
74 "G4TScoreHistFiller is not instantiated!! Histogram is not filled.");
75 }
76 else
77 {
78 filler->FillH1(hitIDMap[index],edep,wei);
79 }
80 }
81
82 return TRUE;
83}
@ 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 GetWeight() const
G4StepPoint * GetPreStepPoint() const
G4double GetTotalEnergyDeposit() 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 G4PSEnergyDeposit::SetUnit ( const G4String unit)
virtual

Definition at line 119 of file G4PSEnergyDeposit.cc.

120{
121 CheckAndSetUnit(unit,"Energy");
122}
void CheckAndSetUnit(const G4String &unit, const G4String &category)

Referenced by G4PSEnergyDeposit(), G4PSEnergyDeposit3D::G4PSEnergyDeposit3D(), and G4ScoreQuantityMessenger::SetNewValue().


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