Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ExternalEvaluator.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_simple_filters_ExternalEvaluator_hh
21 #define INCLUDED_protocols_simple_filters_ExternalEvaluator_hh
22 
23 
24 // Unit Headers
25 
26 // Package Headers
28 
29 // Project Headers
30 #include <core/pose/Pose.fwd.hh>
32 
33 
34 // ObjexxFCL Headers
35 
36 // Utility headers
37 #include <utility/pointer/ReferenceCount.hh>
38 
39 #include <utility/vector1.hh>
40 
41 
42 
43 //// C++ headers
44 
45 namespace protocols {
46 namespace simple_filters {
47 
49 public:
50  ExternalEvaluator( std::string tag, std::string command = "echo NO_COMMAND_SPECIFIED" );
51  virtual ~ExternalEvaluator();
52  virtual core::Real apply( core::pose::Pose& pose ) const;
53  virtual bool applicable( core::pose::Pose const& ) const { return true; };
54  void set_command( std::string const& command_in ) { command_ = command_in; };
56  return scratch_dir_;
57  }
58 private:
62 };
63 
64 }
65 }
66 
67 #endif