Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for last checkin. #548

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
*~
PGPLOT/*
fftw/*
fftw/*
fgsl/*
gsl/*
hdf5/*
lapack/*
lapack95/*
open_spacecharge/*
openmpi/*
plplot/*
xraylib/*
gnu_utilities_src/*
packages/*
PGPLOT
fftw
fftw
fgsl
gsl
hdf5
lapack
lapack95
open_spacecharge
openmpi
plplot
xraylib
gnu_utilities_src
packages

# Jupyter notebooks
.ipynb_checkpoints
Expand Down
2 changes: 1 addition & 1 deletion tao/code/tao_lattice_calc.f90
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ subroutine tao_lattice_calc (calc_ok, print_err)
tao_branch => tao_lat%tao_branch(ib)
tao_branch%spin_map_valid = .false.
tao_branch%spin%valid = .false.
tao_branch%spin_ele(:)%valid = .false.
if (allocated(tao_branch%spin_ele)) tao_branch%spin_ele(:)%valid = .false.

u%model%tao_branch(:)%plot_cache_valid = .false.
u%design%tao_branch(:)%plot_cache_valid = .false.
Expand Down