We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93384c5 commit 05fb659Copy full SHA for 05fb659
1 file changed
src/graphnet/models/detector/magic.py
@@ -19,7 +19,12 @@ class MAGIC(Detector):
19
xyz = ["x_cam", "y_cam", "tel_id"]
20
21
def feature_map(self) -> Dict[str, Callable]:
22
- """Map standardization functions to each dimension of input data."""
+ """Map standardization functions to each dimension.
23
+
24
+ Note: tel_id can take the integer values 0 or 1, where:
25
+ - 0 corresponds to MAGIC-I
26
+ - 1 corresponds to MAGIC-II
27
+ """
28
feature_map = {
29
"x_cam": self._xy,
30
"y_cam": self._xy,
0 commit comments