Main Page | Namespace List | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | Examples

align.h

00001 #ifndef DSRPDB_ALIGN_H
00002 #define DSRPDB_ALIGN_H
00003 #include <dsrpdb/Protein.h>
00004 #include <dsrpdb/Transform.h>
00005 #include <vector>
00006 
00007 namespace dsrpdb {
00015   void align_second_protein_to_first(const Protein &base, Protein &o);
00016 
00023   Transform compute_transform_taking_first_to_second(const std::vector<Point> &a,
00024                                                      const std::vector<Point> &b);
00025 };
00026 #endif