Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ScoreEvaluator.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_ScoreEvaluator_hh
21 #define INCLUDED_protocols_simple_filters_ScoreEvaluator_hh
22 
23 
24 // Unit Headers
25 // #include <protocols/simple_filters/ScoreEvaluator.fwd.hh>
26 
27 // Package Headers
29 // AUTO-REMOVED #include <protocols/simple_filters/RDC_Evaluator.hh>
30 // Project Headers
32 #include <core/pose/Pose.fwd.hh>
33 // AUTO-REMOVED #include <core/scoring/ScoreFunction.hh>
34 // AUTO-REMOVED #include <protocols/evaluation/util.hh>
35 #include <core/scoring/rms_util.hh>
36 
39 #include <utility/vector1.hh>
40 
41 
42 // ObjexxFCL Headers
43 
44 // Utility headers
45 
46 
47 //// C++ headers
48 
49 namespace protocols {
50 namespace simple_filters {
51 
52 ///@brief that rewrites the whole pss struct all previous entries will be lost... probably not what one wants...
54 public:
55  ScoreEvaluator( std::string tag, core::scoring::ScoreFunctionOP scorefxn, bool fullname=false );
57  virtual core::Real
58  apply( core::pose::Pose& pose ) const;
59  virtual bool applicable( core::pose::Pose const&pose ) const;
60 protected:
62 
63 };
64 
66 public:
67 
69  virtual ~TruncatedScoreEvaluator();
70  ///@brief evaluate pose
71  virtual core::Real apply( core::pose::Pose& ) const;
72 private:
75  mutable Size nres_;
77 };
78 
79 }
80 }
81 
82 #endif