aboutsummaryrefslogtreecommitdiff
path: root/julia/CrystFEL/src/CrystFEL.jl
blob: 5afa99204a5e611b84be4d5669d56e32f5f47407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
"""
    CrystFEL

Julia bindings for CrystFEL data structures and routines

## Quick start
```julia
  using CrystFEL
  ...
```
"""
module CrystFEL

include("detgeom.jl")
using .DetGeoms
export Panel, DetGeom

include("image.jl")
using .Images
export Image

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  # of module