Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
BatchNrEvaluator.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 JumpEvaluator.hh
11 /// @brief
12 /// @detailed
13 ///
14 ///
15 ///
16 /// @author Oliver Lange
17 
18 
19 
20 #ifndef INCLUDED_protocols_simple_filters_BatchNrEvaluator_hh
21 #define INCLUDED_protocols_simple_filters_BatchNrEvaluator_hh
22 
23 
24 // Unit Headers
25 
26 // Package Headers
28 
29 // Project Headers
30 #include <core/pose/Pose.fwd.hh>
31 
33 
34 
35 // ObjexxFCL Headers
36 
37 // Utility headers
38 #include <utility/pointer/ReferenceCount.hh>
39 
40 #include <utility/vector1.hh>
41 
42 
43 
44 //// C++ headers
45 
46 namespace protocols {
47 namespace simple_filters {
48 
49 //@brief yields a column with the number of the batch decoy was evaluated in
51 public:
52  virtual void apply( core::pose::Pose& pose, std::string tag, core::io::silent::SilentStruct &pss ) const;
53 
54  virtual core::Size size() const { return 1; };
55  virtual std::string name( core::Size ) const { return "batch"; };
56 private:
57 };
58 
59 
60 
61 //@brief yields a column with the number of the batch decoy was evaluated in
63 public:
64  BatchNrEvaluator() : evaluation::SingleValuePoseEvaluator< core::Size >( "batch_nr" ) {};
65  virtual core::Size apply( core::pose::Pose& pose ) const;
66 private:
67 };
68 
69 
70 }
71 }
72 
73 #endif