-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split makie_post_processing.jl into smaller files
- Loading branch information
1 parent
5d4c9a3
commit 8bf30fd
Showing
21 changed files
with
9,473 additions
and
9,450 deletions.
There are no files selected for viewing
498 changes: 498 additions & 0 deletions
498
makie_post_processing/makie_post_processing/src/chodura_condition.jl
Large diffs are not rendered by default.
Oops, something went wrong.
350 changes: 350 additions & 0 deletions
350
makie_post_processing/makie_post_processing/src/collisionality.jl
Large diffs are not rendered by default.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
makie_post_processing/makie_post_processing/src/error_handler.jl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
function makie_post_processing_error_handler(e::Exception, message::String) | ||
handle_errors = get(input_dict, "handle_errors", true) | ||
if isa(e, InterruptException) || !handle_errors | ||
rethrow(e) | ||
else | ||
println(message * "\nError was $e.") | ||
return nothing | ||
end | ||
end |
2,724 changes: 2,724 additions & 0 deletions
2,724
makie_post_processing/makie_post_processing/src/generic_plot_functions.jl
Large diffs are not rendered by default.
Oops, something went wrong.
430 changes: 430 additions & 0 deletions
430
makie_post_processing/makie_post_processing/src/high_level_interface.jl
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.