Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ChiWellRmsdEvaluator.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_ChiWellRmsdEvaluator_hh
21 #define INCLUDED_protocols_simple_filters_ChiWellRmsdEvaluator_hh
22 
23 
24 // Unit Headers
26 
27 // Package Headers
28 // AUTO-REMOVED #include <protocols/evaluation/util.hh>
29 
30 // Project Headers
32 #include <core/pose/Pose.fwd.hh>
33 
34 // ObjexxFCL Headers
35 
36 // Utility headers
37 #include <utility/pointer/ReferenceCount.hh>
38 // AUTO-REMOVED #include <utility/vector1.hh>
39 
40 //// C++ headers
41 #include <list>
42 
43 #include <core/scoring/rms_util.hh>
44 #include <protocols/loops/Loops.hh>
45 #include <utility/vector1.hh>
46 
47 
48 namespace protocols {
49 namespace simple_filters {
50 
52 public:
53  ChiWellRmsdEvaluator( core::pose::PoseCOP, core::Size nchi_max, core::Real sasa_threshold, std::string column_tag );
54  ChiWellRmsdEvaluator( core::pose::PoseCOP, core::Size nchi_max, core::Real sasa_threshold, utility::vector1< core::Size> const& selection, std::string column_tag );
55 
56  ///@brief evaluate pose
57  virtual core::Real apply( core::pose::Pose& ) const;
58 
59 private:
65 };
66 
67 }
68 }
69 
70 #endif