Skip to content
Open
4 changes: 4 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ JuliaFormatter = "98e50ef6-434e-11e9-1051-2b60c6c9e899"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
NaNMath = "77ba4419-2d1f-58cd-9bb1-8ffee604a2e3"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
ProgressBars = "49802e3a-d2f1-5c88-81d8-b72133a6f568"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
ResumableFunctions = "c5292f4c-5179-55e1-98c5-05642aab7184"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
Expand All @@ -35,8 +37,10 @@ JuliaFormatter = "1.0.62"
LinearAlgebra = "1.11.0"
Logging = "1.11.0"
NaNMath = "0.3, 1"
Plots = "1.40.17"
ProgressBars = "1.4"
Random = "1.11.0"
RecipesBase = "1.3.4"
ResumableFunctions = "0.6"
StatsBase = "0.33"
julia = "1.11"
Expand Down
7 changes: 6 additions & 1 deletion src/Stingray.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ using ProgressBars: tqdm as show_progress
using DocStringExtensions
using LinearAlgebra
using Random
using RecipesBase

include("fourier.jl")
export positive_fft_bins
Expand Down Expand Up @@ -75,6 +76,10 @@ export apply_gtis
export fill_bad_time_intervals!
export create_filtered_lightcurve
export check_gtis
export split_by_gtis
export split_by_gtis, intersect_gtis,get_gti_lengths

include("plotting/plots_recipes_lightcurve.jl")
export create_segments
include("plotting/plots_recipes_gti.jl")
export BTIAnalysisPlot
end
Loading