Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PCS_FragDistance.hh
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
2 // vi: set ts=2 noet:
3 //
4 // (c) Copyright Rosetta Commons Member Institutions.
5 // (c) This file is part of the Rosetta software suite and is made available under license.
6 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
7 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
8 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
9 
10 /// @file protocols/frag_picker/scores/MidPhiOut.hh
11 /// @brief Scores fragments by disulfide-linke Calpha distances
12 /// @author Robert Vernon
13 
14 #ifndef INCLUDED_protocols_frag_picker_scores_PCS_FragDistance_HH
15 #define INCLUDED_protocols_frag_picker_scores_PCS_FragDistance_HH
16 
17 // package headers
19 // AUTO-REMOVED #include <protocols/frag_picker/PhiPsiTalosIO.hh>
20 
23 
24 // mini
25 #include <core/types.hh>
26 
27 // AUTO-REMOVED #include <ObjexxFCL/FArray1D.hh>
28 #include <ObjexxFCL/FArray2D.hh>
29 
30 #include <utility/vector1.hh>
31 
32 
33 namespace protocols {
34 namespace frag_picker {
35 namespace scores {
36 
37 /// @brief scores a fragment by the root mean square deviation of Phi and Psi angles.
39 public:
40 
41  /// @brief creates a Calpha distance based scoring function.
42  /// @detailed Scores distance matches for short range disulfides (ie: within fragment)
43  PCS_FragDistance(Size priority, Real lowest_acceptable_value, bool use_lowest,
44  ObjexxFCL::FArray2D_double target_ca_dev,
45  ObjexxFCL::FArray2D_double target_ca_dist, Size largest_fragment, Size max_length);
46 
47  void do_caching(VallChunkOP);
48  void clean_up();
51 
52 private:
55 
59 
62 };
63 
64 /// @brief Matker class that produces a new PCS_FragDistance object
66 public:
67 
69  MakeFragmentScoringMethod("PCS_FragDistance") {
70  }
71 
73 };
74 
75 } // scores
76 } // frag_picker
77 } // protocols
78 
79 #endif // INCLUDED_protocols_frag_picker_PCS_FragDistance_HH