Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Align_RotamerEvaluator.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 Align_RotamerEvaluator
11 /// @author James Thompson
12 
13 #ifndef INCLUDED_protocols_comparative_modeling_Align_RotamerEvaluator_hh
14 #define INCLUDED_protocols_comparative_modeling_Align_RotamerEvaluator_hh
15 
17 
19 
22 #include <core/pose/Pose.fwd.hh>
23 
24 #include <core/types.hh>
25 
26 #include <utility/vector1.hh>
27 
28 
29 namespace protocols {
30 namespace comparative_modeling {
31 
33 
34 public:
37  std::string tag = "rot_",
38  core::Real const chi_dev = 30,
40  );
41 
43 
44  virtual void apply(
45  core::pose::Pose & pose,
48  ) const;
49 
50  virtual core::Real apply(
51  core::pose::Pose & /*pose*/
52  ) const {
53  return 0;
54  }
55 
56  core::Real chi_dev() const;
57 
58 private:
63 }; // Align_RotamerEvaluator
64 
65 } // comparative_modeling
66 } // protocols
67 
68 #endif