Skip to content
This repository has been archived by the owner on Oct 6, 2023. It is now read-only.

Commit

Permalink
Rename spectral panels for aramis
Browse files Browse the repository at this point in the history
For #8
  • Loading branch information
ivan-usov committed Mar 13, 2023
1 parent a3957e3 commit beda66c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions photodiag_web/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
panel_correlation,
panel_diode_check,
panel_jitter,
panel_spect_corr,
panel_spect_int_corr,
panel_spect_peaks,
)

Expand Down Expand Up @@ -42,7 +42,7 @@
position_panel = TabPanel(child=column(position_img, position_tabs), title="Position")

spectral_img = Div(text="""<img src="/placeholder.png" width="1000" height="200">""")
spectral_tabs = Tabs(tabs=[panel_spect_corr.create(), panel_spect_peaks.create()])
spectral_tabs = Tabs(tabs=[panel_spect_int_corr.create(), panel_spect_peaks.create()])
spectral_panel = TabPanel(child=column(spectral_img, spectral_tabs), title="Spectral")

# Final layout
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,4 +173,4 @@ async def _update_plots():
fig_layout, row(num_shots_spinner, column(Spacer(height=18), update_toggle))
)

return TabPanel(child=tab_layout, title="spect-intensity corr")
return TabPanel(child=tab_layout, title="Aramis Spectral intensity correlation")
2 changes: 1 addition & 1 deletion photodiag_web/app/panel_spect_peaks.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,4 @@ async def _update_plots():
),
)

return TabPanel(child=tab_layout, title="spect-peaks")
return TabPanel(child=tab_layout, title="Aramis Spectral peaks analysis")

0 comments on commit beda66c

Please sign in to comment.