Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
JumpEvaluator.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 JumpEvaluator.hh
11 /// @brief
12 /// @detailed
13 ///
14 ///
15 ///
16 /// @author Oliver Lange
17 
18 
19 
20 #ifndef INCLUDED_protocols_simple_filters_JumpEvaluator_hh
21 #define INCLUDED_protocols_simple_filters_JumpEvaluator_hh
22 
23 
24 // Unit Headers
25 
26 // Package Headers
28 
29 // Project Headers
30 #include <core/id/AtomID.hh>
31 #include <core/pose/Pose.fwd.hh>
32 
33 #include <core/kinematics/Stub.hh>
34 // AUTO-REMOVED #include <core/kinematics/RT.hh>
35 
37 
38 
39 
40 // ObjexxFCL Headers
41 
42 // Utility headers
43 #include <utility/pointer/ReferenceCount.hh>
44 
45 #include <utility/vector1.hh>
46 
47 
48 
49 //// C++ headers
50 
51 namespace protocols {
52 namespace simple_filters {
53 
55 public:
56  JumpEvaluator( core::pose::Pose const& native_pose, Size jump_nr );
57 
58  virtual core::Real apply( core::pose::Pose& pose ) const;
59 
60 private:
68 };
69 
70 //@brief yields a column with the number of jumps in the pose
72 public:
73  JumpNrEvaluator() : evaluation::SingleValuePoseEvaluator< core::Size >( "nrjumps" ) {};
74  virtual core::Size apply( core::pose::Pose& pose ) const;
75 private:
76 };
77 
78 
79 }
80 }
81 
82 #endif