Skip to content

Commit

Permalink
Fixed missing stuff for DS50
Browse files Browse the repository at this point in the history
  • Loading branch information
tegonzalo committed Oct 31, 2023
1 parent 36864a3 commit 38e59d3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Configuration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,8 @@ void Configuration::Construct_DM_Detector()
DM_detector = new DM_Detector_Ionization_ER(XENON1T_S2_ER());
else if(DD_experiment == "DarkSide-50_S2")
DM_detector = new DM_Detector_Ionization_ER(DarkSide50_S2_ER());
else if(DD_experiment == "DarkSide-50_S2_2023")
DM_detector = new DM_Detector_Ionization_ER(DarkSide50_S2_ER_2023());

else if(DD_experiment == "XENON10_S2_Migdal")
DM_detector = new DM_Detector_Ionization_Migdal(XENON10_S2_Migdal());
Expand All @@ -501,6 +503,8 @@ void Configuration::Construct_DM_Detector()
DM_detector = new DM_Detector_Ionization_Migdal(XENON1T_S2_Migdal());
else if(DD_experiment == "DarkSide-50_S2_Migdal")
DM_detector = new DM_Detector_Ionization_Migdal(DarkSide50_S2_Migdal());
else if(DD_experiment == "DarkSide-50_S2_Migdal_2023")
DM_detector = new DM_Detector_Ionization_Migdal(DarkSide50_S2_Migdal_2023());

else if(DD_experiment == "protoSENSEI@surface")
DM_detector = new DM_Detector_Crystal(protoSENSEI_at_Surface());
Expand Down
2 changes: 2 additions & 0 deletions src/Experiments.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,8 @@ DM_Detector_Ionization_ER DarkSide50_S2_ER_2023()
detector.Use_Electron_Bins(ne_threshold, 65, 0.25);
detector.Set_Observed_Events(observed_event_bins);
detector.Set_Expected_Background(bkg_bins);

return detector;
}

//3. Electron recoil experiments - Semiconductor
Expand Down

0 comments on commit 38e59d3

Please sign in to comment.