Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
nptool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
np
nptool
Commits
f82e8f59
Commit
f82e8f59
authored
2 years ago
by
Adrien Matta
Browse files
Options
Downloads
Patches
Plain Diff
* Fixing issue in Resisitve scorer
parent
522bc9b8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#181389
passed
2 years ago
Stage: build-NPLib
Stage: build-NPSimulation
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NPSimulation/Detectors/SuperX3/SuperX3.cc
+2
-0
2 additions, 0 deletions
NPSimulation/Detectors/SuperX3/SuperX3.cc
NPSimulation/Scorers/DSSDScorers.cc
+7
-6
7 additions, 6 deletions
NPSimulation/Scorers/DSSDScorers.cc
with
9 additions
and
6 deletions
NPSimulation/Detectors/SuperX3/SuperX3.cc
+
2
−
0
View file @
f82e8f59
...
@@ -320,6 +320,8 @@ void SuperX3::ReadSensitive(const G4Event*) {
...
@@ -320,6 +320,8 @@ void SuperX3::ReadSensitive(const G4Event*) {
m_Event
->
SetBackE
(
det
,
strip
,
energy
);
m_Event
->
SetBackE
(
det
,
strip
,
energy
);
m_Event
->
SetBackT
(
det
,
strip
,
time
);
m_Event
->
SetBackT
(
det
,
strip
,
time
);
}
}
resistive
->
clear
();
backstrip
->
clear
();
}
}
void
SuperX3
::
InitializeMaterials
()
{
void
SuperX3
::
InitializeMaterials
()
{
...
...
This diff is collapsed.
Click to expand it.
NPSimulation/Scorers/DSSDScorers.cc
+
7
−
6
View file @
f82e8f59
...
@@ -370,21 +370,22 @@ G4bool PS_Resistive::ProcessHits(G4Step* aStep, G4TouchableHistory*) {
...
@@ -370,21 +370,22 @@ G4bool PS_Resistive::ProcessHits(G4Step* aStep, G4TouchableHistory*) {
// Up
// Up
vector
<
DSSDData
>::
iterator
it
;
vector
<
DSSDData
>::
iterator
it
;
it
=
m_HitUp
.
find
(
DSSDData
::
CalculateIndex
(
t_
DetectorNumber
,
t_StripWidth
Number
));
it
=
m_HitUp
.
find
(
DSSDData
::
CalculateIndex
(
t_
StripWidthNumber
,
t_Detector
Number
));
if
(
it
!=
m_HitUp
.
end
())
if
(
it
!=
m_HitUp
.
end
())
{
it
->
Add
(
t_EnergyUp
);
it
->
Add
(
t_EnergyUp
);
else
}
else
{
m_HitUp
.
Set
(
t_EnergyUp
,
t_Time
,
t_StripWidthNumber
,
t_DetectorNumber
);
m_HitUp
.
Set
(
t_EnergyUp
,
t_Time
,
t_StripWidthNumber
,
t_DetectorNumber
);
}
// Down
// Down
it
=
m_HitDown
.
find
(
DSSDData
::
CalculateIndex
(
t_
DetectorNumber
,
t_StripWidth
Number
));
it
=
m_HitDown
.
find
(
DSSDData
::
CalculateIndex
(
t_
StripWidthNumber
,
t_Detector
Number
));
if
(
it
!=
m_HitDown
.
end
())
if
(
it
!=
m_HitDown
.
end
())
it
->
Add
(
t_EnergyDown
);
it
->
Add
(
t_EnergyDown
);
else
else
m_HitDown
.
Set
(
t_EnergyDown
,
t_Time
,
t_StripWidthNumber
,
t_DetectorNumber
);
m_HitDown
.
Set
(
t_EnergyDown
,
t_Time
,
t_StripWidthNumber
,
t_DetectorNumber
);
// Back
// Back
it
=
m_HitBack
.
find
(
DSSDData
::
CalculateIndex
(
t_
DetectorNumber
,
t_StripWidth
Number
));
it
=
m_HitBack
.
find
(
DSSDData
::
CalculateIndex
(
t_
StripWidthNumber
,
t_Detector
Number
));
if
(
it
!=
m_HitBack
.
end
())
if
(
it
!=
m_HitBack
.
end
())
it
->
Add
(
t_Energy
);
it
->
Add
(
t_Energy
);
else
else
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment