aboutsummaryrefslogtreecommitdiff
path: root/src/symmetry.h
blob: 485913a0c6f11417a41520fe65499e92148a805d (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * symmetry.h
 *
 * Symmetry
 *
 * (c) 2006-2010 Thomas White <taw@physics.org>
 *
 * Part of CrystFEL - crystallography with a FEL
 *
 */


#ifndef SYMMETRY_H
#define SYMMETRY_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif


extern void get_asymm(signed int h, signed int k, signed int l,
                      signed int *hp, signed int *kp, signed int *lp,
                      const char *sym);

extern int num_equivs(signed int h, signed int k, signed int l,
                      const char *sym);

extern int num_general_equivs(const char *sym);

extern void get_equiv(signed int h, signed int k, signed int l,
                      signed int *he, signed int *ke, signed int *le,
                      const char *sym, int idx);

extern void get_general_equiv(signed int h, signed int k, signed int l,
                              signed int *he, signed int *ke, signed int *le,
                              const char *sym, int idx);

extern ReflItemList *get_twins(ReflItemList *items,
                               const char *holo, const char *mero);

extern int find_unique_equiv(ReflItemList *items, signed int h, signed int k,
                             signed int l, const char *mero, signed int *hu,
                             signed int *ku, signed int *lu);

extern int check_symmetry(ReflItemList *items, const char *sym);

/* Properties of point groups */
extern int is_polyhedral(const char *sym);
extern int rotational_order(const char *sym);
extern int has_perpendicular_mirror(const char *sym);
extern int has_bisecting_mirror_or_diad(const char *sym);

#endif	/* SYMMETRY_H */