File: geometry-graphs.hh

package info (click to toggle)
coot 1.1.18%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 219,964 kB
  • sloc: cpp: 495,934; python: 35,043; ansic: 26,143; lisp: 22,768; sh: 13,186; makefile: 2,746; awk: 441; xml: 245; csh: 14
file content (24 lines) | stat: -rw-r--r-- 793 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef GEOMETRY_GRAPHS_HH
#define GEOMETRY_GRAPHS_HH

#include "geometry/residue-and-atom-specs.hh"

namespace coot {

   class geometry_graph_block_info_generic_t { 
   public:
      int imol;
      residue_spec_t residue_spec;
      atom_spec_t atom_spec;
      double distortion;
      std::string info_string;
      geometry_graph_block_info_generic_t(int imol_in, 
                                          const coot::residue_spec_t &rs,
                                          const atom_spec_t &atom_spec_in, 
                                          const double &dist_in, 
                                          const std::string &str) : imol(imol_in), residue_spec(rs), atom_spec(atom_spec_in), distortion(dist_in), info_string(str) {}
   };
}


#endif // GEOMETRY_GRAPHS_HH