-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathG4PSCellFlux.cc
More file actions
159 lines (143 loc) · 5.61 KB
/
G4PSCellFlux.cc
File metadata and controls
159 lines (143 loc) · 5.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
//
// G4PSCellFlux
#include "G4PSCellFlux.hh"
#include "G4SystemOfUnits.hh"
#include "G4Track.hh"
#include "G4VSolid.hh"
#include "G4VPhysicalVolume.hh"
#include "G4VPVParameterisation.hh"
#include "G4UnitsTable.hh"
#include "G4VScoreHistFiller.hh"
#include "G4FluenceWeightCalculator.hh"
///////////////////////////////////////////////////////////////////////////////
// (Description)
// This is a primitive scorer class for scoring cell flux.
// The Cell Flux is defined by a sum of track length divided
// by the geometry volume, where all of the tracks in the geometry
// are taken into account.
//
// If you want to score only tracks passing through the geometry volume,
// please use G4PSPassageCellFlux.
//
//
// Created: 2005-11-14 Tsukasa ASO, Akinori Kimura.
// 2010-07-22 Introduce Unit specification.
// 2010-07-22 Add weighted option
// 2020-10-06 Use G4VPrimitivePlotter and fill 1-D histo of kinetic energy (x)
// vs. cell flux * track weight (y) (Makoto Asai)
//
///////////////////////////////////////////////////////////////////////////////
G4PSCellFlux::G4PSCellFlux(G4String name, G4int depth)
: G4PSCellFlux(name, "percm2", depth)
{}
G4PSCellFlux::G4PSCellFlux(G4String name, const G4String& unit, G4int depth)
: G4VPrimitivePlotter(name, depth)
, HCID(-1)
, EvtMap(nullptr)
, weighted(true)
, scoreWeighted(false)
{
DefineUnitAndCategory();
SetUnit(unit);
}
G4bool G4PSCellFlux::ProcessHits(G4Step* aStep, G4TouchableHistory*)
{
G4double stepLength = aStep->GetStepLength();
if(stepLength == 0.)
return false;
G4int idx = ((G4TouchableHistory*) (aStep->GetPreStepPoint()->GetTouchable()))
->GetReplicaNumber(indexDepth);
G4double cubicVolume = ComputeVolume(aStep, idx);
const G4Track* track = aStep->GetTrack();
G4double pWeight = 1.;
if (scoreWeighted) {
G4double kineticEnergy = track->GetKineticEnergy();
const auto* particle = track->GetParticleDefinition();
pWeight = G4FluenceWeightCalculator::GetInstance()->GetWeight(particle, kineticEnergy);
}
G4double CellFlux = stepLength / cubicVolume * pWeight;
if(weighted)
CellFlux *= aStep->GetPreStepPoint()->GetWeight();
G4int index = GetIndex(aStep);
EvtMap->add(index, CellFlux);
if(!hitIDMap.empty() && hitIDMap.find(index) != hitIDMap.end())
{
auto filler = G4VScoreHistFiller::Instance();
if(filler == nullptr)
{
G4Exception(
"G4PSCellFlux::ProcessHits", "SCORER0123", JustWarning,
"G4TScoreHistFiller is not instantiated!! Histogram is not filled.");
}
else
{
filler->FillH1(hitIDMap[index],
aStep->GetPreStepPoint()->GetKineticEnergy(), CellFlux);
}
}
return true;
}
void G4PSCellFlux::Initialize(G4HCofThisEvent* HCE)
{
EvtMap = new G4THitsMap<G4double>(detector->GetName(), GetName());
if(HCID < 0)
HCID = GetCollectionID(0);
HCE->AddHitsCollection(HCID, EvtMap);
}
void G4PSCellFlux::clear() { EvtMap->clear(); }
void G4PSCellFlux::PrintAll()
{
G4cout << " MultiFunctionalDet " << detector->GetName() << G4endl;
G4cout << " PrimitiveScorer " << GetName() << G4endl;
G4cout << " Number of entries " << EvtMap->entries() << G4endl;
for(const auto& [copy, flux]: *(EvtMap->GetMap()))
{
G4cout << " copy no.: " << copy
<< " cell flux : " << *(flux) / GetUnitValue() << " ["
<< GetUnit() << "]" << G4endl;
}
}
void G4PSCellFlux::SetUnit(const G4String& unit)
{
CheckAndSetUnit(unit, "Per Unit Surface");
}
void G4PSCellFlux::DefineUnitAndCategory()
{
// Per Unit Surface
new G4UnitDefinition("percentimeter2", "percm2", "Per Unit Surface",
(1. / cm2));
new G4UnitDefinition("permillimeter2", "permm2", "Per Unit Surface",
(1. / mm2));
new G4UnitDefinition("permeter2", "perm2", "Per Unit Surface", (1. / m2));
}
G4double G4PSCellFlux::ComputeVolume(G4Step* aStep, G4int idx)
{
G4VSolid* solid = ComputeSolid(aStep, idx);
assert(solid);
return solid->GetCubicVolume();
}