Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can find a version with more advanced graphics here.

The Detector interface can be used to access several types of detectors.  More documentation on specific detector types can be found here:

...

"image" method can also be used to convert any array with the "unassembled" shape into "assembled" format (that is, applying the geometry) with a line like this:

Code Block
assembled_array = det.image(evt, unassembled_array)

This can be useful for plotting masks, or determining which pixels are "real" in the assembled image:

Code Block
real_pixels = det.image(evt, np.ones_like(unassembled_array))