Geant4 9.6.0
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)
 
virtual ~G4PSTrackCounter ()
 
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)
 

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 47 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 :G4VPrimitiveScorer(name,depth),HCID(-1),fDirection(direction),weighted(false)
44{
45 SetUnit("");
46}
virtual void SetUnit(const G4String &unit)

◆ ~G4PSTrackCounter()

G4PSTrackCounter::~G4PSTrackCounter ( )
virtual

Definition at line 48 of file G4PSTrackCounter.cc.

49{;}

Member Function Documentation

◆ clear()

void G4PSTrackCounter::clear ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 96 of file G4PSTrackCounter.cc.

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

◆ DrawAll()

void G4PSTrackCounter::DrawAll ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 100 of file G4PSTrackCounter.cc.

101{;}

◆ EndOfEvent()

void G4PSTrackCounter::EndOfEvent ( G4HCofThisEvent )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 93 of file G4PSTrackCounter.cc.

94{;}

◆ Initialize()

void G4PSTrackCounter::Initialize ( G4HCofThisEvent HCE)
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 85 of file G4PSTrackCounter.cc.

86{
88 if(HCID < 0) {HCID = GetCollectionID(0);}
89 HCE->AddHitsCollection(HCID, (G4VHitsCollection*)EvtMap);
90 //G4cout << "----- PS Initialize " << G4endl;
91}
void AddHitsCollection(G4int HCID, G4VHitsCollection *aHC)
G4String GetName() const
G4MultiFunctionalDetector * detector
G4int GetCollectionID(G4int)

◆ PrintAll()

void G4PSTrackCounter::PrintAll ( )
virtual

Reimplemented from G4VPrimitiveScorer.

Definition at line 103 of file G4PSTrackCounter.cc.

104{
105 G4cout << " MultiFunctionalDet " << detector->GetName() << G4endl;
106 G4cout << " PrimitiveScorer " << GetName() << G4endl;
107 G4cout << " Number of entries " << EvtMap->entries() << G4endl;
108 std::map<G4int,G4double*>::iterator itr = EvtMap->GetMap()->begin();
109 for(; itr != EvtMap->GetMap()->end(); itr++) {
110 G4cout << " copy no.: " << itr->first
111 << " track count: " << *(itr->second)
112 << " [tracks] "
113 << G4endl;
114 }
115}
#define G4endl
Definition: G4ios.hh:52
G4DLLIMPORT std::ostream G4cout
std::map< G4int, T * > * GetMap() const
Definition: G4THitsMap.hh:68
G4int entries() const
Definition: G4THitsMap.hh:79

◆ ProcessHits()

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

Implements G4VPrimitiveScorer.

Definition at line 51 of file G4PSTrackCounter.cc.

52{
53
54 G4StepPoint* preStep = aStep->GetPreStepPoint();
55 G4StepPoint* posStep = aStep->GetPostStepPoint();
56 G4bool IsEnter = preStep->GetStepStatus()==fGeomBoundary;
57 G4bool IsExit = posStep->GetStepStatus()==fGeomBoundary;
58
59 // Regular : count in prestep volume.
60 G4int index = GetIndex(aStep);
61
62 // G4cout << " trk " << aStep->GetTrack()->GetTrackID()
63 // << " index " << index << " In " << IsEnter << " Out " <<IsExit
64 // << " PreStatus " << preStep->GetStepStatus()
65 // << " PostStatus " << posStep->GetStepStatus()
66 // << " w " << aStep->GetPreStepPoint()->GetWeight()
67 // << G4endl;
68
69 G4bool flag = FALSE;
70
71 if ( IsEnter && fDirection == fCurrent_In ) flag = TRUE;
72 else if ( IsExit && fDirection == fCurrent_Out ) flag = TRUE;
73 else if ( (IsExit||IsEnter) && fDirection == fCurrent_InOut ) flag = TRUE;
74
75 if ( flag ){
76 //G4cout << " Count " << G4endl;
77 G4double val = 1.0;
78 if(weighted) val *= aStep->GetPreStepPoint()->GetWeight();
79 EvtMap->add(index,val);
80 }
81
82 return TRUE;
83}
@ fCurrent_Out
@ fCurrent_In
@ fCurrent_InOut
@ fGeomBoundary
Definition: G4StepStatus.hh:54
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
bool G4bool
Definition: G4Types.hh:67
G4StepStatus GetStepStatus() const
G4double GetWeight() const
G4StepPoint * GetPreStepPoint() const
G4StepPoint * GetPostStepPoint() const
G4int add(const G4int &key, T *&aHit) const
Definition: G4THitsMap.hh:138
virtual G4int GetIndex(G4Step *)
#define TRUE
Definition: globals.hh:55
#define FALSE
Definition: globals.hh:52

◆ SetUnit()

void G4PSTrackCounter::SetUnit ( const G4String unit)
virtual

Definition at line 117 of file G4PSTrackCounter.cc.

118{
119 if (unit == "" ){
120 unitName = unit;
121 unitValue = 1.0;
122 }else{
123 G4String msg = "Invalid unit ["+unit+"] (Current unit is [" +GetUnit()+"] ) for " + GetName();
124 G4Exception("G4PSTrackCounter::SetUnit","DetPS0018",JustWarning,msg);
125 }
126
127}
@ JustWarning
const G4String & GetUnit() const
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41

Referenced by G4PSTrackCounter().

◆ Weighted()

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

Definition at line 59 of file G4PSTrackCounter.hh.

59{ weighted = flg; }

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