Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
CombinedConstraintEvaluator.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 ClashEvaluator.hh
11 /// @brief
12 /// @detailed
13 ///
14 ///
15 ///
16 /// @author Oliver Lange
17 
18 
19 
20 #ifndef INCLUDED_protocols_constraints_additional_CombinedConstraintEvaluator_hh
21 #define INCLUDED_protocols_constraints_additional_CombinedConstraintEvaluator_hh
22 
23 #ifdef WIN32
25 #endif
26 
27 
28 // Unit Headers
29 
30 // Package Headers
32 
33 // Project Headers
34 #include <core/pose/Pose.fwd.hh>
35 // AUTO-REMOVED #include <core/scoring/constraints/Constraint.hh>
36 
37 #ifdef WIN32 // for visual studio
38 #else
39 // AUTO-REMOVED #include <core/scoring/constraints/Constraint.fwd.hh>
40 #endif
41 // AUTO-REMOVED #include <core/scoring/constraints/ConstraintSet.fwd.hh>
42 
44 
45 
46 // ObjexxFCL Headers
47 
48 // Utility headers
49 #include <utility/pointer/ReferenceCount.hh>
50 
52 #include <utility/vector1.hh>
53 
54 
55 
56 //// C++ headers
57 
58 namespace protocols {
59 namespace constraints_additional {
60 
62 public:
63  CombinedConstraintEvaluator( std::string tag, std::string filename, Size constraints_combine_ratio_ = 2, Size repeat = 10 );
64  //sets xxx_cst and xxx_viol columns
65  virtual void apply( core::pose::Pose& pose, std::string tag, core::io::silent::SilentStruct &pss) const;
66 
68 
69  //returns constraint score
70  virtual core::Real apply( core::pose::Pose& pose ) const;
71 
72  virtual core::Size size() const { return 2; }
73  virtual std::string name( core::Size i ) const;
74 
75 private:
78 
79 };
80 
81 }
82 }
83 
84 #endif