Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RDCScore.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/RDCScore.hh
11 /// @brief Object that scores a fragment by its crmsd to the native
12 /// @author Ray Wang ( wangy@u.washington.edu )
13 
14 #ifndef INCLUDED_protocols_frag_picker_scores_RDCScore_hh
15 #define INCLUDED_protocols_frag_picker_scores_RDCScore_hh
16 
17 // package headers
21 
23 // AUTO-REMOVED #include <protocols/toolbox/superimpose.hh>
24 
25 // type headers
26 #include <core/types.hh>
27 
28 #include <utility/vector1.hh>
29 
30 
31 namespace protocols {
32 namespace frag_picker {
33 namespace scores {
34 
35 /// @brief scores a fragment by its crmsd to the given reference structure
37 public:
38  /// @brief creates a RDC-based scoring function.
39  RDCScore( Size, Real, bool);
40 
41  void do_caching( VallChunkOP );
42  void clean_up();
45 
46 
47 private:
50 };
51 
52 /// @brief Maker class that produces a new RDCScore object
54 public:
55 
57  MakeFragmentScoringMethod("RDCScore") {
58  }
59 
61 };
62 
63 } // scores
64 } // frag_picker
65 } // protocols
66 
67 #endif // INCLUDED_protocols_frag_picker_scores_RDCScore_HH