Skip to content

Commit

Permalink
add HyperKDR configuration
Browse files Browse the repository at this point in the history
This is the configuration in the 2018 Design Report (before the September 2019 optimization)
and is provided for backward compatibility only.
  • Loading branch information
JostMigenda committed Feb 26, 2021
1 parent b570ac8 commit 78e672e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/documentation.tex
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ \subsection{Detector Configurations}\label{sec:detector-configurations}
Select a detector configuration by using the \texttt{--detector <value>} command line option. The following detector configurations are currently implemented:

\begin{description}
\item[\texttt{HyperK}] Inner detector of Hyper-Kamiokande~\cite{HKDR2018}. Cylinder with a height of \SI{65.8}{m} and a diameter of \SI{64.8}{m}, filled with water.\footnote{In September 2019, the dimensions were changed slightly compared to the 2018 Design Report.}
\item[\texttt{HyperK}] Inner detector of Hyper-Kamiokande~\cite{HKDR2018}. Cylinder with a height of \SI{65.8}{m} and a diameter of \SI{64.8}{m}, filled with water.\footnote{In September 2019, the dimensions were changed slightly compared to the 2018 Design Report. The old configuration is available as \texttt{HyperKDR}.}
\item[\texttt{SuperK}] Inner detector of Super-Kamiokande~\cite{Fukuda2003}. Cylinder with a height of \SI{36.2}{m} and a diameter of \SI{33.7}{m}, filled with water.
\item[\texttt{WATCHMAN}] WATCHMAN detector~\cite{Askins2015}. Cylinder with a height and diameter of \SI{12.8}{m}, filled with water.
\item[\texttt{WATCHMAN-LS}] Same as \texttt{WATCHMAN}, but filled with liquid scintillator.
Expand Down
8 changes: 6 additions & 2 deletions sntools/detectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def wbls(x):


# List of supported detector configurations
supported_detectors = ["HyperK", "SuperK",
supported_detectors = ["HyperK", "HyperKDR", "SuperK",
"WATCHMAN", "WATCHMAN-LS", "WATCHMAN-WbLS",
"THEIA25", "THEIA100"]

Expand All @@ -51,7 +51,11 @@ def __init__(self, name):
self.shape = "cylinder"
self.height = 6580
self.radius = 6480 / 2
# 2018 Design Report: radius = 7080 / 2; height = 5480
self.material = water
elif name == "HyperKDR": # 2018 Design Report (outdated, only for backwards compatibility)
self.shape = "cylinder"
self.height = 5480
self.radius = 7080 / 2
self.material = water
elif name == "SuperK": # inner detector only
self.shape = "cylinder"
Expand Down

0 comments on commit 78e672e

Please sign in to comment.