Skip to content
Snippets Groups Projects
Verified Commit cca93e95 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Use different modules in the example

parent 5848aada
No related branches found
No related tags found
No related merge requests found
......@@ -92,13 +92,13 @@ To access a module with a given module ID, one can either use the dictionary or
index the [`Detector`](@ref) directly, which is the recommended way:
```@example 1
detector_module = det[808976933]
detector_module = det[808468425]
```
Or for a given string and floor:
```@example 1
det[15, 13]
det[3, 15]
```
It is possible to select all modules for a given floor on all strings using the `:` syntax. Here
......@@ -112,7 +112,7 @@ Another way is using the `getmodule(d::Detector, string::Integer, floor::Integer
to access a module on a given string and floor:
```@example 1
detector_module = getmodule(det, 15, 13)
detector_module = getmodule(det, 3, 15)
```
### PMTs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment