Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PcsEnergyController.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  //////////////////////////////////////////////
11  /// @file protocols/topology_broker/PcsEnergyController.hh
12  ///
13  /// @authorsv Christophe Schmitz & Oliver Lange
14  ///
15  /// @last_modified February 2010
16  ////////////////////////////////////////////////
17 
18 #ifndef INCLUDED_protocols_topology_broker_PcsEnergyController_hh
19 #define INCLUDED_protocols_topology_broker_PcsEnergyController_hh
20 
21 // Unit Headers
22 
23 // Package Headers
25 
26 // Project Headers
27 #include <core/pose/Pose.fwd.hh>
29 
30 #include <utility/vector1.hh>
31 
32 
33 // ObjexxFCL Headers
34 
35 // Utility headers
36 
37 // C++ headers
38 
39 namespace protocols {
40 namespace topology_broker {
41 
43 
45 
46 public:
47 
48  PcsEnergyController(); // Construct
49 
50  ~PcsEnergyController(); // Destruct
51 
52  PcsEnergyController(PcsEnergyController const & other); // copy
53 
54 
55  virtual TopologyClaimerOP // clone
56  clone() const {
57  return new PcsEnergyController( *this );
58  }
59 
60  ///@brief type() is specifying the output name of the TopologyClaimer
61  virtual std::string
62  type() const {
63  return _static_type_name();
64  }
65 
66  /// @brief return the type name
67  static std::string
69  return "PcsEnergyController";
70  }
71 
72  /// @brief This is called to process each tag
73  virtual bool
74  read_tag( std::string tag, std::istream & );
75 
76  /// @brief Called any time the CLAIMER is being read (before any tag is read)
77  virtual void
78  set_defaults();
79 
80  /// @brief This is called each time the stageID is changed
81  virtual void
82  add_mover(moves::RandomMover& /* random_mover */,
83  core::pose::Pose const& /*pose*/,
84  abinitio::StageID /*stageID*/, /* abinitio sampler stage */
85  core::scoring::ScoreFunction const& /*scorefxn*/,
86  core::Real /* progress */ /* progress within stage */
87  );
88 
89  /// @brief Called Each time END CLAIMER is processed
90  virtual void
92 
93 private:
94 
95 };
96 
97 } // namespace topology_broker
98 } // namespace protocols
99 
100 #endif