libcootapi
 
Loading...
Searching...
No Matches
/opt/mambaforge/envs/bioconda/conda-bld/coot-headless_1766554005715/work/api/residue-validation-information.hh
1#ifndef RESIDUE_VALIDATION_INFORMATION_HH
2#define RESIDUE_VALIDATION_INFORMATION_HH
3
4#include <string>
5#include "geometry/residue-and-atom-specs.hh"
6
7namespace coot {
8 class residue_validation_information_t {
9 public:
10 residue_validation_information_t() : function_value(-1) {}
11 residue_validation_information_t(const coot::residue_spec_t &rs,
12 const coot::atom_spec_t &atom_spec_in,
13 double d, const std::string &l) :
14 residue_spec(rs), atom_spec(atom_spec_in), function_value(d), label(l) {}
15 residue_spec_t residue_spec;
16 atom_spec_t atom_spec;
17 double function_value;
18 std::string label;
19 };
20}
21
22#endif // RESIDUE_VALIDATION_INFORMATION_HH
Definition residue-and-atom-specs.hh:35
Definition residue-and-atom-specs.hh:216