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

#include <G4PSCellCharge.hh>

+ Inheritance diagram for G4PSCellCharge:

Public Member Functions

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

Constructor & Destructor Documentation

◆ G4PSCellCharge() [1/2]

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

Definition at line 42 of file G4PSCellCharge.cc.

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

◆ G4PSCellCharge() [2/2]

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

Definition at line 48 of file G4PSCellCharge.cc.

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

◆ ~G4PSCellCharge()

G4PSCellCharge::~G4PSCellCharge ( )
virtual

Definition at line 55 of file G4PSCellCharge.cc.

56{;}

Member Function Documentation

◆ clear()

void G4PSCellCharge::clear ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 94 of file G4PSCellCharge.cc.

94 {
95 EvtMap->clear();
96}
void clear()
Definition: G4THitsMap.hh:537

◆ DrawAll()

void G4PSCellCharge::DrawAll ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 98 of file G4PSCellCharge.cc.

99{;}

◆ EndOfEvent()

void G4PSCellCharge::EndOfEvent ( G4HCofThisEvent )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 91 of file G4PSCellCharge.cc.

92{;}

◆ Initialize()

void G4PSCellCharge::Initialize ( G4HCofThisEvent HCE)
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 83 of file G4PSCellCharge.cc.

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

◆ PrintAll()

void G4PSCellCharge::PrintAll ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 101 of file G4PSCellCharge.cc.

102{
103 G4cout << " MultiFunctionalDet " << detector->GetName() << G4endl;
104 G4cout << " PrimitiveScorer " << GetName() <<G4endl;
105 G4cout << " Number of entries " << EvtMap->entries() << G4endl;
106 std::map<G4int,G4double*>::iterator itr = EvtMap->GetMap()->begin();
107 for(; itr != EvtMap->GetMap()->end(); itr++) {
108 G4cout << " copy no.: " << itr->first
109 << " cell charge : " << *(itr->second)/GetUnitValue()
110 << " [" << GetUnit() << "]"
111 << G4endl;
112 }
113}
#define G4endl
Definition: G4ios.hh:57
G4GLOB_DLL std::ostream G4cout
const G4String & GetUnit() const
G4double GetUnitValue() const
Map_t * GetMap() const
Definition: G4THitsMap.hh:151
size_t entries() const
Definition: G4THitsMap.hh:155

◆ ProcessHits()

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

Implements G4VPrimitiveScorer.

Definition at line 58 of file G4PSCellCharge.cc.

59{
60
61 // Enter or First step of primary.
63 || ( aStep->GetTrack()->GetParentID() == 0 &&
64 aStep->GetTrack()->GetCurrentStepNumber() == 1 ) ){
65 G4double CellCharge = aStep->GetPreStepPoint()->GetCharge();
66 CellCharge *= aStep->GetPreStepPoint()->GetWeight();
67 G4int index = GetIndex(aStep);
68 EvtMap->add(index,CellCharge);
69 }
70
71 // Exit
73 G4double CellCharge = aStep->GetPreStepPoint()->GetCharge();
74 CellCharge *= aStep->GetPreStepPoint()->GetWeight();
75 G4int index = GetIndex(aStep);
76 CellCharge *= -1.0;
77 EvtMap->add(index,CellCharge);
78 }
79
80 return TRUE;
81}
@ fGeomBoundary
Definition: G4StepStatus.hh:43
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
#define TRUE
Definition: Globals.hh:27
G4StepStatus GetStepStatus() const
G4double GetCharge() const
G4double GetWeight() const
G4Track * GetTrack() const
G4StepPoint * GetPreStepPoint() const
G4StepPoint * GetPostStepPoint() const
G4int GetCurrentStepNumber() const
G4int GetParentID() const
virtual G4int GetIndex(G4Step *)
size_t add(const G4int &key, U *&aHit) const
Definition: G4THitsMap.hh:177

◆ SetUnit()

void G4PSCellCharge::SetUnit ( const G4String unit)
virtual

Definition at line 115 of file G4PSCellCharge.cc.

116{
117 CheckAndSetUnit(unit,"Electric charge");
118}
void CheckAndSetUnit(const G4String &unit, const G4String &category)

Referenced by G4PSCellCharge(), G4PSCellCharge3D::G4PSCellCharge3D(), and G4ScoreQuantityMessenger::SetNewValue().


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