Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RDC_Evaluator.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 relax_initialization_protocols
11 /// @brief initialization protocols for relax
12 /// @detailed
13 /// Contains currently: Classic Abinitio
14 ///
15 ///
16 /// @author Oliver Lange
17 
18 
19 
20 #ifndef INCLUDED_protocols_simple_filters_RDC_Evaluator_hh
21 #define INCLUDED_protocols_simple_filters_RDC_Evaluator_hh
22 
23 
24 // Unit Headers
27 // Package Headers
28 // AUTO-REMOVED #include <protocols/evaluation/util.hh>
29 // AUTO-REMOVED #include <core/scoring/ResidualDipolarCoupling.hh>
30 
31 // Project Headers
33 #include <core/pose/Pose.fwd.hh>
34 
35 // ObjexxFCL Headers
36 
37 // Utility headers
38 #include <utility/pointer/ReferenceCount.hh>
39 // AUTO-REMOVED #include <utility/vector1.hh>
40 
41 //// C++ headers
42 #include <list>
43 
45 #include <core/scoring/rms_util.hh>
46 #include <utility/vector1.hh>
47 
48 
49 namespace protocols {
50 namespace simple_filters {
51 
52 
54 public:
55  RDC_Evaluator( std::string tag = "rdc" );
56  // RDC_Evaluator( utility::vector1< std::string > const& rdc_files, std::string tag = "rdc" );
57 
58  ///@brief evaluate pose
59  virtual core::Real apply( core::pose::Pose& ) const;
60 
61 private:
63  mutable core::scoring::ResidualDipolarCoupling rdc_data_; //initialized automatically from -in:file:rdc
64 };
65 
66 
68 public:
69  SelectRDC_Evaluator( core::scoring::ResidueSelection const& selection, std::string tag = "", std::string file ="" );
70  SelectRDC_Evaluator( utility::vector1< core::Size> const& selection, std::string tag = "" , std::string file ="");
71 
72  //work it out by yourself from missing density == whacky random coords
74 
75  //work it out by yourself from missing density == whacky random coords
77 
78  ///@brief evaluate pose
79  virtual core::Real apply( core::pose::Pose& ) const;
80 
81 private:
82 
83  void init_rdcs();
84 
89 };
90 
91 
92 }
93 }
94 
95 #endif