00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef DSRPDB_RMS_H
00023 #define DSRPDB_RMS_H
00024
00025 #include <dsrpdb/config.h>
00026 #include <dsrpdb/Protein.h>
00027 #include <dsrpdb/geometry.h>
00028 #include <dsrpdb/Matrix.h>
00029 #include <cmath>
00030 #include <vector>
00031
00032 namespace dsrpdb {
00034
00041 double no_align_cRMS(const Protein &a, const Protein &b);
00042
00043
00045
00050 double no_align_ca_cRMS(const Protein &a, const Protein &b);
00051
00052
00054
00057 double cRMS(const Protein &a, const Protein &b);
00058
00059
00061
00064 double ca_cRMS(const Protein &a, const Protein &b);
00065
00066
00068
00073 double dRMS(const Protein &a, const Protein &b);
00074
00075
00077
00082 double ca_dRMS(const Protein &a, const Protein &b);
00083
00084
00086
00089 Matrix distance_matrix(const Protein &a);
00090
00091
00093 Matrix ca_distance_matrix(const Protein &a);
00094
00095
00097 Matrix distance_matrix(const Model &a);
00098
00099
00101 Matrix ca_distance_matrix(const Model &a);
00102
00103 };
00104
00105 #endif