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
//! MMFF94 typing data: per-type atom properties.
use HashMap;
/// MMFF94 atom property row (from `<AtomProperties>` in the XML).
/// Parsed MMFF typing metadata: atom properties indexed by type id.
///
/// Separate from [`ForceField`](crate::ff::forcefield::ForceField) because these
/// are typing metadata, not potential parameters. Loaded from the same XML but
/// used only during topology classification (e.g. the `sbmb` flag drives MMFF
/// bond-type assignment), not during energy evaluation.