From 882b681e38dcbcc12715c07ce6be7f151940bbb2 Mon Sep 17 00:00:00 2001 From: Marco Biasini <marco.biasini@unibas.ch> Date: Wed, 22 May 2013 16:55:12 +0200 Subject: [PATCH] reflow and add DLLEXPORT magic --- modules/mol/alg/src/distance_rmsd_test.hh | 13 ++++++++----- modules/mol/alg/src/local_dist_diff_test.hh | 9 ++++----- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/modules/mol/alg/src/distance_rmsd_test.hh b/modules/mol/alg/src/distance_rmsd_test.hh index 346ed1cc0..12e4ec866 100644 --- a/modules/mol/alg/src/distance_rmsd_test.hh +++ b/modules/mol/alg/src/distance_rmsd_test.hh @@ -53,10 +53,11 @@ namespace ost { namespace mol { namespace alg { /// residue properties. Specifically, the local residue-based Distance RMSD score is stored in a float property /// as the provided string, while the residue-based sum of squared distances and the number of distances checked /// are saved in two properties named <string>_sum (a float property) and <string>_count (an int property). -std::pair<Real,long int> DistanceRMSDTest(const EntityView& mdl, - const GlobalRDMap& glob_dist_list, - Real cap_distance, int sequence_separation = 0, - const String& local_drmsdt_property_string=""); +std::pair<Real,long int> DLLEXPORT_OST_MOL_ALG +DistanceRMSDTest(const EntityView& mdl, + const GlobalRDMap& glob_dist_list, + Real cap_distance, int sequence_separation = 0, + const String& local_drmsdt_property_string=""); /// \brief Computes the Distance RMSD Test given a list of distances to check and a model @@ -67,7 +68,9 @@ std::pair<Real,long int> DistanceRMSDTest(const EntityView& mdl, /// /// A sequence separation parameter can be passed to the function. If this happens, only distances between residues /// whose separation is higher than the provided parameter are considered when computing the score. -Real DLLEXPORT_OST_MOL_ALG DRMSD(const EntityView& v, const GlobalRDMap& global_dist_list, Real cap_distance, int sequence_separation=0); +Real DLLEXPORT_OST_MOL_ALG DRMSD(const EntityView& v, + const GlobalRDMap& global_dist_list, + Real cap_distance, int sequence_separation=0); }}} diff --git a/modules/mol/alg/src/local_dist_diff_test.hh b/modules/mol/alg/src/local_dist_diff_test.hh index 6f0d2c20f..f9013c975 100644 --- a/modules/mol/alg/src/local_dist_diff_test.hh +++ b/modules/mol/alg/src/local_dist_diff_test.hh @@ -46,11 +46,10 @@ namespace ost { namespace mol { namespace alg { /// residue properties. Specifically, the local residue-based lddt score is stored in a float property named /// as the provided string, while the residue-based number of conserved and total distances are saved in two /// int properties named <string>_conserved and <string>_total. -std::pair<long int,long int> DLLEXPORT_OST_MOL_ALG LocalDistDiffTest(const EntityView& mdl, - const GlobalRDMap& dist_list, - std::vector<Real> cutoff_list, - int sequence_separation = 0, - const String& local_ldt_property_string=""); +std::pair<long int,long int> DLLEXPORT_OST_MOL_ALG +LocalDistDiffTest(const EntityView& mdl, const GlobalRDMap& dist_list, + std::vector<Real> cutoff_list, int sequence_separation = 0, + const String& local_ldt_property_string=""); /// \brief Calculates the Local Distance Difference Score for a given model with respect to a given target /// -- GitLab