Skip to content
Snippets Groups Projects
Commit 84abb78a authored by de Séréville Nicolas's avatar de Séréville Nicolas
Browse files

+ Update scorer use to take into account 'levels'

parent 76711468
No related branches found
No related tags found
No related merge requests found
...@@ -854,6 +854,7 @@ void GaspardTrackerAnnular::InitializeScorers() ...@@ -854,6 +854,7 @@ void GaspardTrackerAnnular::InitializeScorers()
// First stage scorer // First stage scorer
G4VPrimitiveScorer* GPDScorerFirstStage = G4VPrimitiveScorer* GPDScorerFirstStage =
new SILICONSCORERS::PS_Silicon_Annular("GPDAnnularFirstStage", new SILICONSCORERS::PS_Silicon_Annular("GPDAnnularFirstStage",
0,
FirstStageRmin, FirstStageRmin,
FirstStageRmax, FirstStageRmax,
0*deg, 0*deg,
...@@ -865,6 +866,7 @@ void GaspardTrackerAnnular::InitializeScorers() ...@@ -865,6 +866,7 @@ void GaspardTrackerAnnular::InitializeScorers()
// Second stage scorer // Second stage scorer
G4VPrimitiveScorer* GPDScorerSecondStage = G4VPrimitiveScorer* GPDScorerSecondStage =
new SILICONSCORERS::PS_Silicon_Annular("GPDAnnularSecondStage", new SILICONSCORERS::PS_Silicon_Annular("GPDAnnularSecondStage",
0,
FirstStageRmin, FirstStageRmin,
FirstStageRmax, FirstStageRmax,
0*deg, 0*deg,
...@@ -876,6 +878,7 @@ void GaspardTrackerAnnular::InitializeScorers() ...@@ -876,6 +878,7 @@ void GaspardTrackerAnnular::InitializeScorers()
// Third stage scorer // Third stage scorer
G4VPrimitiveScorer* GPDScorerThirdStage = G4VPrimitiveScorer* GPDScorerThirdStage =
new SILICONSCORERS::PS_Silicon_Annular("GPDAnnularThirdStage", new SILICONSCORERS::PS_Silicon_Annular("GPDAnnularThirdStage",
0,
FirstStageRmin, FirstStageRmin,
FirstStageRmax, FirstStageRmax,
0*deg, 0*deg,
......
...@@ -750,6 +750,7 @@ void GaspardTrackerSquare::InitializeScorers() ...@@ -750,6 +750,7 @@ void GaspardTrackerSquare::InitializeScorers()
// First stage scorer // First stage scorer
G4VPrimitiveScorer* GPDScorerFirstStage = G4VPrimitiveScorer* GPDScorerFirstStage =
new SILICONSCORERS::PS_Silicon_Rectangle("GPDSquareFirstStage", new SILICONSCORERS::PS_Silicon_Rectangle("GPDSquareFirstStage",
0,
FirstStageFace, FirstStageFace,
FirstStageFace, FirstStageFace,
NumberOfStrips, NumberOfStrips,
...@@ -758,6 +759,7 @@ void GaspardTrackerSquare::InitializeScorers() ...@@ -758,6 +759,7 @@ void GaspardTrackerSquare::InitializeScorers()
// Second stage scorer // Second stage scorer
G4VPrimitiveScorer* GPDScorerSecondStage = G4VPrimitiveScorer* GPDScorerSecondStage =
new SILICONSCORERS::PS_Silicon_Rectangle("GPDSquareSecondStage", new SILICONSCORERS::PS_Silicon_Rectangle("GPDSquareSecondStage",
0,
SecondStageFace, SecondStageFace,
SecondStageFace, SecondStageFace,
1, 1,
...@@ -766,6 +768,7 @@ void GaspardTrackerSquare::InitializeScorers() ...@@ -766,6 +768,7 @@ void GaspardTrackerSquare::InitializeScorers()
// Third stage scorer // Third stage scorer
G4VPrimitiveScorer* GPDScorerThirdStage = G4VPrimitiveScorer* GPDScorerThirdStage =
new SILICONSCORERS::PS_Silicon_Rectangle("GPDSquareThirdStage", new SILICONSCORERS::PS_Silicon_Rectangle("GPDSquareThirdStage",
0,
ThirdStageFace, ThirdStageFace,
ThirdStageFace, ThirdStageFace,
1, 1,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment