Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
CutBiasClaimer.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 TopologyBroker
11 /// @brief top-class (Organizer) of the TopologyBroker mechanism
12 /// @detailed responsibilities:
13 /// @author Oliver Lange
14 
15 
16 #ifndef INCLUDED_protocols_topology_broker_CutBiasClaimer_hh
17 #define INCLUDED_protocols_topology_broker_CutBiasClaimer_hh
18 
19 
20 // Unit Headers
22 
23 // Package Headers
25 
26 // Project Headers
27 //#include <core/pose/Pose.fwd.hh>
28 
29 // ObjexxFCL Headers
30 
31 // Utility headers
32 //#include <utility/io/izstream.hh>
33 //#include <utility/io/ozstream.hh>
34 //#include <utility/io/util.hh>
35 //#include <basic/Tracer.hh>
36 //#include <basic/options/option.hh>
37 
38 //#include <basic/options/option_macros.hh>
40 
41 //// C++ headers
42 //#include <fstream>
43 #include <string>
44 
45 #include <utility/vector1.hh>
46 
47 
48 // option key includes
49 
50 
51 namespace protocols {
52 namespace topology_broker {
53 
54 class CutBiasClaimer : public virtual TopologyClaimer {
55 public:
56  CutBiasClaimer(); //for factory
59 
60  virtual TopologyClaimerOP clone() const {
61  return new CutBiasClaimer( *this );
62  }
63 
64  virtual void generate_claims( DofClaims& ) {};
65 
66  ///@brief read definition of Claimer from setup file, i.e., a CLAIMER <type> ... END_CLAIMER block
67  virtual void read( std::istream & ) {};
68 
69  ///@brief type() is specifying the output name of the TopologyClaimer
70  virtual std::string type() const {
71  return _static_type_name();
72  }
73 
75  return "CutBiasClaimer";
76  }
77 
78  virtual void manipulate_cut_bias( utility::vector1< core::Real >& /*cut_bias*/ );
79 
80 protected:
81 private:
83 }; //class CutBiasClaimer
84 
85 }
86 }
87 
88 #endif