Returns the shape of raw data: `(n_rows, n_columns, n_energy_bins)`.
(self)
| 864 | return self.raw_data.shape[0], self.raw_data.shape[1] |
| 865 | |
| 866 | def get_raw_data_shape(self): |
| 867 | """ |
| 868 | Returns the shape of raw data: `(n_rows, n_columns, n_energy_bins)`. |
| 869 | """ |
| 870 | return self.raw_data.shape |
| 871 | |
| 872 | def _get_sum(self, *, client=None): |
| 873 | # Only the values of 'mask', 'pos1' and 'pos2' will be cached |