aboutsummaryrefslogtreecommitdiff
path: root/julia/CrystFEL/src/CrystFEL.jl
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2023-10-09 10:47:36 +0200
committerThomas White <taw@physics.org>2024-02-06 16:59:34 +0100
commit355246a6197ad2fcd7a030eb4dd5890f0c32ce8e (patch)
tree7819f6f20499c6602ee853bd7f5552872a1fbabf /julia/CrystFEL/src/CrystFEL.jl
parentfa8cb01b9f9f609d761574af18433aa39c18389a (diff)
Organise submodules hierarchically
Diffstat (limited to 'julia/CrystFEL/src/CrystFEL.jl')
-rw-r--r--julia/CrystFEL/src/CrystFEL.jl21
1 files changed, 20 insertions, 1 deletions
diff --git a/julia/CrystFEL/src/CrystFEL.jl b/julia/CrystFEL/src/CrystFEL.jl
index 32ff6475..6e72757a 100644
--- a/julia/CrystFEL/src/CrystFEL.jl
+++ b/julia/CrystFEL/src/CrystFEL.jl
@@ -1,7 +1,26 @@
+"""
+ CrystFEL
+
+Julia bindings for CrystFEL data structures and routines
+
+## Quick start
+```julia
+ using CrystFEL
+ ...
+```
+"""
module CrystFEL
include("symmetry.jl")
+using .Symmetry
+export SymOpList
+
include("datatemplates.jl")
+using .DataTemplates
+export DataTemplate, loaddatatemplate
+
include("reflists.jl")
+using .RefLists
+export RefList, Reflection, loadreflist, savereflections
-end # module CrystFEL
+end # of module