File: symmetry-info.hh

package info (click to toggle)
coot 1.1.14%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 197,660 kB
  • sloc: cpp: 485,936; python: 34,637; ansic: 26,036; lisp: 22,736; sh: 13,097; makefile: 2,657; awk: 441; xml: 167; csh: 14
file content (23 lines) | stat: -rw-r--r-- 554 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
#ifndef COOOT_API_SYMMETRY_INFO_HH
#define COOOT_API_SYMMETRY_INFO_HH

#include <vector>

#include "coords/mmdb-crystal.h"
#include "cell.hh"

namespace coot {

   class symmetry_info_t {
   public:
      std::vector<std::pair<symm_trans_t, Cell_Translation> > symm_trans;
      Cell cell;
      symmetry_info_t(const std::vector<std::pair<symm_trans_t, Cell_Translation> > &symm_trans_in,
                      const Cell &cell_in) : symm_trans(symm_trans_in), cell(cell_in) {}
      symmetry_info_t() {}
   };

}


#endif // COOOT_API_SYMMETRY_INFO_HH