RDKit
Open-source cheminformatics and machine learning.
Loading...
Searching...
No Matches
TorsionPreferences.h
Go to the documentation of this file.
1//
2// Copyright (C) 2017-2026 Sereina Riniker and other RDKit contributors
3//
4// @@ All Rights Reserved @@
5// This file is part of the RDKit.
6// The contents are covered by the terms of the BSD license
7// which is included in the file license.txt, found at the root
8// of the RDKit source tree.
9//
10#include <RDGeneral/export.h>
11#ifndef _RD_TORSIONPREFERENCES_H_
12#define _RD_TORSIONPREFERENCES_H_
13#include <vector>
14#include <string>
15#include <memory>
16#include <boost/dynamic_bitset.hpp>
17
18namespace RDKit {
19class ROMol;
20} // namespace RDKit
21
22namespace ForceFields {
23namespace CrystalFF {
24
25//! A structure used to the experimental torsion patterns
27 unsigned int torsionIdx;
28 std::string smarts;
29 std::vector<double> V;
30 std::vector<int> signs;
31 std::unique_ptr<const RDKit::ROMol> dp_pattern;
32 unsigned int idx[4];
33};
34
36struct Params {
37 double distance{1.0};
38 double fourthDim{1.0};
39 double chiral{1.0};
40 double kTermAngle{1.0};
41 double kTermImproper{10.0};
42 double kTermTorsion{100.0};
43 double etTermScaling{1.0};
44};
45
46namespace SEQ {
47constexpr Params Cosine;
48}
49namespace AIO {
50constexpr Params Cosine = {.distance = 2.15,
51 .fourthDim = 2.15,
52 .kTermAngle = 0.1,
53 .kTermImproper = .001,
54 .kTermTorsion = 2.15,
55 .etTermScaling = 0.1};
56} // namespace AIO
57} // namespace FC
59 std::vector<std::vector<int>> expTorsionAtoms;
60 std::vector<std::pair<std::vector<int>, std::vector<double>>>
62 std::vector<std::vector<int>> improperAtoms;
63 std::vector<std::pair<int, int>> bonds;
64 std::vector<std::vector<int>> angles;
65 std::vector<int> atomNums;
67 boost::dynamic_bitset<> constrainedAtoms;
68 double *distMat;
70};
71
72//! Get the experimental torsional angles in a molecule
74 const RDKit::ROMol &mol, CrystalFFDetails &details,
75 bool useExpTorsions = false, bool useSmallRingTorsions = false,
76 bool useMacrocycleTorsions = false, bool useBasicKnowledge = false,
77 unsigned int version = 2, bool verbose = false);
78
79//! \overload
81 const RDKit::ROMol &mol, CrystalFFDetails &details,
82 std::vector<std::tuple<unsigned int, std::vector<unsigned int>,
83 const ExpTorsionAngle *>> &torsionBonds,
84 bool useExpTorsions = false, bool useSmallRingTorsions = false,
85 bool useMacrocycleTorsions = false, bool useBasicKnowledge = false,
86 unsigned int version = 2, bool verbose = false);
87
88} // namespace CrystalFF
89} // namespace ForceFields
90
91#endif
#define RDKIT_FORCEFIELDHELPERS_EXPORT
Definition export.h:209
RDKIT_FORCEFIELDHELPERS_EXPORT void getExperimentalTorsions(const RDKit::ROMol &mol, CrystalFFDetails &details, bool useExpTorsions=false, bool useSmallRingTorsions=false, bool useMacrocycleTorsions=false, bool useBasicKnowledge=false, unsigned int version=2, bool verbose=false)
Get the experimental torsional angles in a molecule.
Std stuff.
std::vector< std::vector< int > > improperAtoms
std::vector< std::pair< int, int > > bonds
std::vector< std::pair< std::vector< int >, std::vector< double > > > expTorsionAngles
std::vector< std::vector< int > > expTorsionAtoms
std::vector< std::vector< int > > angles
A structure used to the experimental torsion patterns.
std::unique_ptr< const RDKit::ROMol > dp_pattern