Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ClashEvaluator.cc
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 PoseEvaluator
11 /// @brief PoseEvaluator
12 /// @detailed
13 ///
14 ///
15 /// @author Oliver Lange
16 
17 
18 
19 // Unit Headers
21 
22 // Package Headers
23 
24 // Project Headers
26 #include <core/pose/Pose.hh>
27 
28 // ObjexxFCL Headers
29 #include <ObjexxFCL/string.functions.hh>
30 
31 // Utility headers
32 #include <basic/Tracer.hh>
33 #include <core/scoring/rms_util.hh>
34 // C++ headers
35 
36 
37 namespace protocols {
38 namespace simple_filters {
39 
40 using namespace core;
41 ConstraintEvaluator::ConstraintEvaluator( std::string tag, ConstraintSet const& )
42  : evaluation::SingleValuePoseEvaluator< Real >( tag )
43 {
44 }
45 
46 ConstraintEvaluator::ConstraintEvaluator( std::string tag, ConstraintCOPs const& )
47  : evaluation::SingleValuePoseEvaluator< Real >( tag )
48 {
49 }
50 
51 
52 
53 }
54 }