Skip to content

Commit

Permalink
Fix order of energies (must be from smaller to larger)
Browse files Browse the repository at this point in the history
  • Loading branch information
paolafer committed Mar 8, 2023
1 parent e9aeec7 commit 1776df4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/materials/OpticalMaterialProperties.cc
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,7 @@ namespace opticalprops {
h_Planck * c_light / (250. * nm), h_Planck * c_light / (230. * nm),
h_Planck * c_light / (210. * nm), h_Planck * c_light / (190. * nm),
h_Planck * c_light / (170. * nm), h_Planck * c_light / (150. * nm),
h_Planck * c_light / (100. * nm), optPhotMaxE_
h_Planck * c_light / (108. * nm), optPhotMaxE_
};

std::vector<G4double> WLS_absLength = {
Expand All @@ -879,7 +879,7 @@ namespace opticalprops {
400. * nm, 400. * nm, // 250 , 230 nm
350. * nm, 250. * nm, // 210 , 190 nm
350. * nm, 400. * nm, // 170 , 150 nm
400. * nm, noAbsLength_ // 100 nm
400. * nm, 400. * nm // 100 nm
};

//for (int i=0; i<WLS_abs_entries; i++)
Expand Down

0 comments on commit 1776df4

Please sign in to comment.