Skip to content

Commit

Permalink
Fixed missed rebase conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
AbbyGi committed Sep 5, 2023
1 parent c0b9cb7 commit 7add13f
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions sirepo_bluesky/shadow_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,16 +100,9 @@ def read_shadow_file(filename, histogram_bins=None):
"flux": data.sum(),
"mean": data.mean(),
"photon_energy": photon_energy,
<<<<<<< HEAD
"horizontal_extent": horizontal_extent,
"vertical_extent": vertical_extent,
"horizontal_extent": horizontal_extent.astype(float),
"vertical_extent": vertical_extent.astype(float),
"units": "um",
=======
"horizontal_extent": np.array(data_dict["xrange"][:2]).astype(float),
"vertical_extent": np.array(data_dict["yrange"][:2]).astype(float),
# 'labels': labels,
# 'units': units,
>>>>>>> 370b982 (started working on support for tiled)
}

ret.update(utils.get_beam_stats(data, horizontal_extent, vertical_extent))
Expand Down

0 comments on commit 7add13f

Please sign in to comment.