Skip to content
Draft
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
dd657ed
add-pynel-package
VitorSouzaLNLS Sep 14, 2023
93bad89
rm-pynel-version
VitorSouzaLNLS Sep 14, 2023
7557fc4
comparing-buttons-test
VitorSouzaLNLS Sep 14, 2023
d40cb49
rmk-find-indices
VitorSouzaLNLS Sep 14, 2023
c5e2a6c
Merge branch 'master' into add-vert-disp-analysis-pynel
VitorSouzaLNLS Sep 15, 2023
8c67201
Update __init__
VitorSouzaLNLS Sep 15, 2023
3846355
fix-rebuild-buttons-copy
VitorSouzaLNLS Sep 18, 2023
d4e1d41
add-about-info
VitorSouzaLNLS Sep 19, 2023
a89b38c
Merge branch 'master' into add-vert-disp-analysis-pynel
VitorSouzaLNLS Sep 19, 2023
ce0e540
Merge branch 'master' into add-vert-disp-analysis-pynel
VitorSouzaLNLS Nov 27, 2023
f083285
removing_pickle_deps
VitorSouzaLNLS Nov 27, 2023
89d1231
removing_static_pickles
VitorSouzaLNLS Nov 28, 2023
92a4559
improve-init-button-function
VitorSouzaLNLS Nov 28, 2023
e1c8062
buttons_improvements
VitorSouzaLNLS Dec 4, 2023
f93448d
lastm
VitorSouzaLNLS Dec 13, 2023
9e3fd55
moving
VitorSouzaLNLS Dec 13, 2023
c639a5b
Merge branch 'master' into add-vert-disp-analysis-pynel
VitorSouzaLNLS Dec 13, 2023
fcb11d5
more_mods
VitorSouzaLNLS Dec 13, 2023
cad0e38
more_mods_up
VitorSouzaLNLS Dec 13, 2023
d2405f2
updating
VitorSouzaLNLS Dec 14, 2023
55df21d
rmk_formatting
VitorSouzaLNLS Dec 14, 2023
d3da5ec
deleting_local_pyproject.toml
VitorSouzaLNLS Dec 15, 2023
91cf882
updating
VitorSouzaLNLS Dec 18, 2023
13bcb44
mods
VitorSouzaLNLS Dec 18, 2023
2d4c4fb
improving_non_static_model
VitorSouzaLNLS Dec 19, 2023
9a61164
correcting_make_matrix
VitorSouzaLNLS Dec 19, 2023
d3ace93
trying_to_fix_default_base
VitorSouzaLNLS Dec 20, 2023
accdfba
default_base_fix
VitorSouzaLNLS Dec 20, 2023
dba219d
including_twiss_and_fix_button_init_by_indices
VitorSouzaLNLS Dec 20, 2023
c45b8ba
fix-sects
VitorSouzaLNLS Dec 20, 2023
d305eb7
fix_indices_bug
VitorSouzaLNLS Dec 22, 2023
d469f16
fix-use_root_buttons_load/save
VitorSouzaLNLS Dec 22, 2023
1b12514
Merge branch 'master' into add-vert-disp-analysis-pynel
VitorSouzaLNLS Apr 4, 2024
f31ebfc
ADD: missing modules in init "__all__" def.
VitorSouzaLNLS Apr 4, 2024
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,6 @@ examples/.*
test/flatfile2.txt

.vscode/

apsuite/pynel/gen_buttons.ipynb
Comment thread
fernandohds564 marked this conversation as resolved.
Outdated
apsuite/pynel/Default_Pynel_Base_Buttons.pickle
3 changes: 2 additions & 1 deletion apsuite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@

__all__ = (
'commisslib', 'loco', 'optics_analysis', 'optimization',
'trackcpp_utils')
'trackcpp_utils', 'orbcorr', 'dynap')

import os as _os

with open(_os.path.join(__path__[0], 'VERSION'), 'r') as _f:
__version__ = _f.read().strip()
Loading