diff --git a/NPSimulation/include/AnnularS1Scorers.hh b/NPSimulation/include/AnnularS1Scorers.hh index d689a2c86dd83fca1a455275cbd47f785039c55e..bb8b11a0fec258338f8ebb7452094d6d09bc5610 100644 --- a/NPSimulation/include/AnnularS1Scorers.hh +++ b/NPSimulation/include/AnnularS1Scorers.hh @@ -26,6 +26,12 @@ #include "G4THitsMap.hh" +namespace S1SCORERS +{ + // This Threshold is used in all scorers + // Any energy deposit under this threshold will not create an entry + const double TriggerThreshold = 0.1 * keV; + class AnnularS1ScorerThetaStripNumber : public G4VPrimitiveScorer { public: // with description @@ -74,4 +80,5 @@ private: G4THitsMap<G4double>* EvtMap; }; +} #endif diff --git a/NPSimulation/include/GaspardScorers.hh b/NPSimulation/include/GaspardScorers.hh index 00ea23df1dc2153c239dd368a86a3293837cea99..a2115760518deb5873b6957b32d1e756c56213c5 100644 --- a/NPSimulation/include/GaspardScorers.hh +++ b/NPSimulation/include/GaspardScorers.hh @@ -27,6 +27,9 @@ namespace GPDSCORERS { + // This Threshold is used in all scorers + // Any energy deposit under this threshold will not create an entry + const double TriggerThreshold = 0.1 * keV; class GPDScorerFirstStageEnergy : public G4VPrimitiveScorer { @@ -294,6 +297,4 @@ private: }; } - -using namespace GPDSCORERS; #endif diff --git a/NPSimulation/include/GeneralScorers.hh b/NPSimulation/include/GeneralScorers.hh index 59d77d7f0721e19fd0a45dcea3c8e1530521cc24..57e01667fafd8ba73ab835dbdffcd47137874175 100644 --- a/NPSimulation/include/GeneralScorers.hh +++ b/NPSimulation/include/GeneralScorers.hh @@ -31,7 +31,7 @@ namespace GENERALSCORERS { //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... // This Threshold is used in the above scorer. Any energy deposit under this threshold will not create an entry. - const double TriggerThreshold = 100*keV ; + const double TriggerThreshold = 0.1*keV ; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... // The following function is used in many scorer. following the Detector Volume Nomenclature diff --git a/NPSimulation/include/HydeScorers.hh b/NPSimulation/include/HydeScorers.hh index 5246d3f6b33f2678385f5f11e14e171fd538a609..8535d2085ad1db6eec428caeb89379de767884a5 100644 --- a/NPSimulation/include/HydeScorers.hh +++ b/NPSimulation/include/HydeScorers.hh @@ -27,6 +27,9 @@ namespace HYDSCORERS { + // This Threshold is used in all scorers + // Any energy deposit under this threshold will not create an entry + const double TriggerThreshold = 0.1 * keV; class HYDScorerFirstStageEnergy : public G4VPrimitiveScorer { @@ -295,5 +298,4 @@ private: } -using namespace HYDSCORERS; #endif diff --git a/NPSimulation/include/W1Scorers.hh b/NPSimulation/include/W1Scorers.hh index 564dc95ac68b4630f34aaf3cc936496b236f7f29..e5fb885c9c0e03aa433009b91157218459dd6aa5 100644 --- a/NPSimulation/include/W1Scorers.hh +++ b/NPSimulation/include/W1Scorers.hh @@ -27,6 +27,9 @@ namespace W1SCORERS { + // This Threshold is used in all scorers + // Any energy deposit under this threshold will not create an entry + const double TriggerThreshold = 0.1 * keV; class W1ScorerFrontStripNumber : public G4VPrimitiveScorer { diff --git a/NPSimulation/src/AnnularS1.cc b/NPSimulation/src/AnnularS1.cc index 40bf715b3c35768e6b0f89ada56abed8e037d788..8438bba6e2137b105467a61f95dd011d4bb99ad5 100644 --- a/NPSimulation/src/AnnularS1.cc +++ b/NPSimulation/src/AnnularS1.cc @@ -56,7 +56,9 @@ using namespace std; using namespace CLHEP; + using namespace ANNULARS1; +using namespace S1SCORERS; diff --git a/NPSimulation/src/AnnularS1Scorers.cc b/NPSimulation/src/AnnularS1Scorers.cc index c8a03e3b7b856c6df8726deafc6be4bbfe1c87b2..aaa7192c9dcbe1932b36f706aebd4b5731aae8f4 100644 --- a/NPSimulation/src/AnnularS1Scorers.cc +++ b/NPSimulation/src/AnnularS1Scorers.cc @@ -25,6 +25,7 @@ #include "AnnularS1.hh" using namespace ANNULARS1; +using namespace S1SCORERS; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... @@ -84,7 +85,7 @@ G4bool AnnularS1ScorerThetaStripNumber::ProcessHits(G4Step* aStep, G4TouchableHi } G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, ThetaStripNumber); return TRUE; @@ -156,7 +157,7 @@ G4bool AnnularS1ScorerPhiStripNumber::ProcessHits(G4Step* aStep, G4TouchableHist // G4cout << "phi " << phi << " PhiWidth " << PhiWidth << " PhiStripNumber " << PhiStripNumber << G4endl; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, PhiStripNumber); return TRUE; diff --git a/NPSimulation/src/GaspardScorers.cc b/NPSimulation/src/GaspardScorers.cc index cb5c4a575dfc124c574321f8830251f2862675d3..4c999f0be0cea6a3d8cfa454cf375a00105fbaab 100644 --- a/NPSimulation/src/GaspardScorers.cc +++ b/NPSimulation/src/GaspardScorers.cc @@ -35,6 +35,8 @@ using namespace GPDTRAP; using namespace GPDANNULAR; using namespace GPDDUMMYSHAPE; +using namespace GPDSCORERS; + //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... // Added by Adrien MATTA: @@ -65,7 +67,7 @@ G4bool GPDScorerFirstStageEnergy::ProcessHits(G4Step* aStep, G4TouchableHistory* POS = aStep->GetPreStepPoint()->GetTouchableHandle()->GetHistory()->GetTopTransform().TransformPoint(POS); G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->add(DetNbr + index, edep); return TRUE; @@ -130,7 +132,7 @@ G4bool GPDScorerSecondStageEnergy::ProcessHits(G4Step* aStep, G4TouchableHistory POS = aStep->GetPreStepPoint()->GetTouchableHandle()->GetHistory()->GetTopTransform().TransformPoint(POS); G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->add(DetNbr + index, edep); return TRUE; @@ -195,7 +197,7 @@ G4bool GPDScorerThirdStageEnergy::ProcessHits(G4Step* aStep, G4TouchableHistory* POS = aStep->GetPreStepPoint()->GetTouchableHandle()->GetHistory()->GetTopTransform().TransformPoint(POS); G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->add(DetNbr + index, edep); return TRUE; @@ -271,7 +273,7 @@ G4bool GPDScorerFirstStageFrontStripDummyShape::ProcessHits(G4Step* aStep, G4Tou //Rare case where particle is close to edge of silicon plan if (X == m_NumberOfStrip+1) X = m_NumberOfStrip; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, X); return TRUE; @@ -338,7 +340,7 @@ G4bool GPDScorerFirstStageBackStripDummyShape::ProcessHits(G4Step* aStep, G4Touc //Rare case where particle is close to edge of silicon plan if (X == m_NumberOfStrip+1) X = m_NumberOfStrip; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, X); return TRUE; @@ -403,7 +405,7 @@ G4bool GPDScorerFirstStageFrontStripSquare::ProcessHits(G4Step* aStep, G4Touchab //Rare case where particle is close to edge of silicon plan if (X == 129) X = 128; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, X); return TRUE; @@ -469,7 +471,7 @@ G4bool GPDScorerFirstStageBackStripSquare::ProcessHits(G4Step* aStep, G4Touchabl if (Y == 129) Y = 128; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, Y); return TRUE; @@ -533,7 +535,7 @@ G4bool GPDScorerFirstStageFrontStripTrapezoid::ProcessHits(G4Step* aStep, G4Touc //Rare case where particle is close to edge of silicon plan if (X == 129) X = 128; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, X); return TRUE; @@ -599,7 +601,7 @@ G4bool GPDScorerFirstStageBackStripTrapezoid::ProcessHits(G4Step* aStep, G4Touch if (Y == 129) Y = 128; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, Y); return TRUE; @@ -694,7 +696,7 @@ G4bool GPDScorerFirstStageFrontStripAnnular::ProcessHits(G4Step* aStep, G4Toucha } G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, ThetaStripNumber); @@ -769,7 +771,7 @@ G4bool GPDScorerFirstStageBackStripAnnular::ProcessHits(G4Step* aStep, G4Touchab // G4cout << "phi " << phi << " PhiWidth " << PhiWidth << " PhiStripNumber " << PhiStripNumber << G4endl; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, PhiStripNumber); diff --git a/NPSimulation/src/GaspardTrackerAnnular.cc b/NPSimulation/src/GaspardTrackerAnnular.cc index 8b51e0d425f9cef42cf9e04d0275ac6062dd9cf8..bfb9d1fd0e529b1496c1b97250ee5f5fe0f7d611 100644 --- a/NPSimulation/src/GaspardTrackerAnnular.cc +++ b/NPSimulation/src/GaspardTrackerAnnular.cc @@ -58,7 +58,9 @@ using namespace std; using namespace CLHEP; + using namespace GPDANNULAR; +using namespace GPDSCORERS; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... GaspardTrackerAnnular::GaspardTrackerAnnular() diff --git a/NPSimulation/src/GaspardTrackerDummyShape.cc b/NPSimulation/src/GaspardTrackerDummyShape.cc index 753c3f58c76a464b2322e7ff239559ed24876025..0d23de36a7bcea00d31eb7a654f8963a6607bfb7 100644 --- a/NPSimulation/src/GaspardTrackerDummyShape.cc +++ b/NPSimulation/src/GaspardTrackerDummyShape.cc @@ -62,7 +62,9 @@ using namespace std; using namespace CLHEP; + using namespace GPDDUMMYSHAPE; +using namespace GPDSCORERS; diff --git a/NPSimulation/src/GaspardTrackerSquare.cc b/NPSimulation/src/GaspardTrackerSquare.cc index c6b0e9f6422c96cce5d52ab01e93e726ebacf0d6..9c2dce6f1167a0167247f94598422d84821044c5 100644 --- a/NPSimulation/src/GaspardTrackerSquare.cc +++ b/NPSimulation/src/GaspardTrackerSquare.cc @@ -61,7 +61,10 @@ using namespace std; using namespace CLHEP; + using namespace GPDSQUARE; +using namespace GPDSCORERS; + diff --git a/NPSimulation/src/GaspardTrackerTrapezoid.cc b/NPSimulation/src/GaspardTrackerTrapezoid.cc index 28b384ce2bbbd044e241b7554299b25fe6c97bde..5381eb2ab5708abcadc4188d9d2ae95d911a77ec 100644 --- a/NPSimulation/src/GaspardTrackerTrapezoid.cc +++ b/NPSimulation/src/GaspardTrackerTrapezoid.cc @@ -57,7 +57,10 @@ using namespace std; using namespace CLHEP; -using namespace GPDTRAP ; + +using namespace GPDTRAP; +using namespace GPDSCORERS; + diff --git a/NPSimulation/src/HydeScorers.cc b/NPSimulation/src/HydeScorers.cc index 5d84ed4381c26af3d5fc8d9d9c562303bcbe9c20..d75809cb9d521373a93699aa937fe12c09c77cd3 100644 --- a/NPSimulation/src/HydeScorers.cc +++ b/NPSimulation/src/HydeScorers.cc @@ -35,6 +35,8 @@ using namespace HYDTRAP; using namespace HYDANNULAR; using namespace HYDDUMMYSHAPE; +using namespace HYDSCORERS; + //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... // Added by Adrien MATTA: @@ -65,7 +67,7 @@ G4bool HYDScorerFirstStageEnergy::ProcessHits(G4Step* aStep, G4TouchableHistory* POS = aStep->GetPreStepPoint()->GetTouchableHandle()->GetHistory()->GetTopTransform().TransformPoint(POS); G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->add(DetNbr + index, edep); return TRUE; @@ -130,7 +132,7 @@ G4bool HYDScorerSecondStageEnergy::ProcessHits(G4Step* aStep, G4TouchableHistory POS = aStep->GetPreStepPoint()->GetTouchableHandle()->GetHistory()->GetTopTransform().TransformPoint(POS); G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->add(DetNbr + index, edep); return TRUE; @@ -195,7 +197,7 @@ G4bool HYDScorerThirdStageEnergy::ProcessHits(G4Step* aStep, G4TouchableHistory* POS = aStep->GetPreStepPoint()->GetTouchableHandle()->GetHistory()->GetTopTransform().TransformPoint(POS); G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->add(DetNbr + index, edep); return TRUE; @@ -268,7 +270,7 @@ G4bool HYDScorerFirstStageFrontStripDummyShape::ProcessHits(G4Step* aStep, G4Tou //Rare case where particle is close to edge of silicon plan if (X == m_NumberOfStrip+1) X = m_NumberOfStrip; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, X); return TRUE; @@ -333,7 +335,7 @@ G4bool HYDScorerFirstStageBackStripDummyShape::ProcessHits(G4Step* aStep, G4Touc //Rare case where particle is close to edge of silicon plan if (X == m_NumberOfStrip+1) X = m_NumberOfStrip; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, X); return TRUE; @@ -398,7 +400,7 @@ G4bool HYDScorerFirstStageFrontStripSquare::ProcessHits(G4Step* aStep, G4Touchab //Rare case where particle is close to edge of silicon plan if (X == 129) X = 128; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, X); return TRUE; @@ -464,7 +466,7 @@ G4bool HYDScorerFirstStageBackStripSquare::ProcessHits(G4Step* aStep, G4Touchabl if (Y == 129) Y = 128; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, Y); return TRUE; @@ -528,7 +530,7 @@ G4bool HYDScorerFirstStageFrontStripTrapezoid::ProcessHits(G4Step* aStep, G4Touc //Rare case where particle is close to edge of silicon plan if (X == 129) X = 128; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, X); return TRUE; @@ -594,7 +596,7 @@ G4bool HYDScorerFirstStageBackStripTrapezoid::ProcessHits(G4Step* aStep, G4Touch if (Y == 129) Y = 128; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, Y); return TRUE; @@ -659,7 +661,7 @@ G4bool HYDScorerFirstStageFrontStripAnnular::ProcessHits(G4Step* aStep, G4Toucha //Rare case where particle is close to edge of silicon plan if (X == 129) X = 128; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, X); return TRUE; @@ -726,7 +728,7 @@ G4bool HYDScorerFirstStageBackStripAnnular::ProcessHits(G4Step* aStep, G4Touchab if (Y == 129) Y = 128; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, Y); return TRUE; diff --git a/NPSimulation/src/HydeTrackerAnnular.cc b/NPSimulation/src/HydeTrackerAnnular.cc index 90e24deb831ce7cd387562a363f4a0fbc1f46eb2..6982d34398baaf21d5ebcc1f7380db22a3aba545 100644 --- a/NPSimulation/src/HydeTrackerAnnular.cc +++ b/NPSimulation/src/HydeTrackerAnnular.cc @@ -58,6 +58,8 @@ using namespace std; using namespace CLHEP; using namespace HYDANNULAR; +using namespace HYDSCORERS; + //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... HydeTrackerAnnular::HydeTrackerAnnular() { diff --git a/NPSimulation/src/HydeTrackerDummyShape.cc b/NPSimulation/src/HydeTrackerDummyShape.cc index c7bc923670dab3b6a2f361af6eeb84f812083183..23053cd9506056648b5341a0818fcb411e6d386d 100644 --- a/NPSimulation/src/HydeTrackerDummyShape.cc +++ b/NPSimulation/src/HydeTrackerDummyShape.cc @@ -62,6 +62,7 @@ using namespace std; using namespace CLHEP; using namespace HYDDUMMYSHAPE; +using namespace HYDSCORERS; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... diff --git a/NPSimulation/src/HydeTrackerSquare.cc b/NPSimulation/src/HydeTrackerSquare.cc index 18a7ee81ada4fdd415df0af71d442b2a3d9a318e..a544b1065acc67d947f40daa303705902ecb281e 100644 --- a/NPSimulation/src/HydeTrackerSquare.cc +++ b/NPSimulation/src/HydeTrackerSquare.cc @@ -61,6 +61,7 @@ using namespace std; using namespace CLHEP; using namespace HYDSQUARE; +using namespace HYDSCORERS; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... diff --git a/NPSimulation/src/HydeTrackerTrapezoid.cc b/NPSimulation/src/HydeTrackerTrapezoid.cc index 11a8f03630e30e905d92ef9177feb9543c3addcb..6f2bb950da871117b45e472bafad06e770d474ed 100644 --- a/NPSimulation/src/HydeTrackerTrapezoid.cc +++ b/NPSimulation/src/HydeTrackerTrapezoid.cc @@ -57,6 +57,7 @@ using namespace std; using namespace CLHEP; using namespace HYDTRAP ; +using namespace HYDSCORERS; //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... diff --git a/NPSimulation/src/W1Scorers.cc b/NPSimulation/src/W1Scorers.cc index 5d4d0fd13236996d660cfdba5f9b77db11b1033b..6dffec56882a055351e2f0ab0d4abc00baeff266 100644 --- a/NPSimulation/src/W1Scorers.cc +++ b/NPSimulation/src/W1Scorers.cc @@ -29,6 +29,8 @@ #include "W1.hh" using namespace W1SQUARE; +using namespace W1SCORERS; + //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... // Added by Adrien MATTA: @@ -69,7 +71,7 @@ G4bool W1ScorerFrontStripNumber::ProcessHits(G4Step* aStep, G4TouchableHistory*) //Rare case where particle is close to edge of silicon plan if (X == m_NumberOfStrip+1) X = m_NumberOfStrip; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, X); return TRUE; @@ -136,7 +138,7 @@ G4bool W1ScorerBackStripNumber::ProcessHits(G4Step* aStep, G4TouchableHistory*) //Rare case where particle is close to edge of silicon plan if (X == m_NumberOfStrip+1) X = m_NumberOfStrip; G4double edep = aStep->GetTotalEnergyDeposit(); - if (edep < 100*keV) return FALSE; + if (edep < TriggerThreshold) return FALSE; G4int index = aStep->GetTrack()->GetTrackID(); EvtMap->set(DetNbr + index, X); return TRUE;