Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PseudocontactShiftEnergyController.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 PseudocontactShiftEnergyController.hh
12  ///
13  /// @authorsv Christophe Schmitz & Oliver Lange
14  ///
15  /// @last_modified June 2009
16  ////////////////////////////////////////////////
17 
18 #ifndef INCLUDED_protocols_topology_broker_PseudocontactShiftEnergyController_hh
19 #define INCLUDED_protocols_topology_broker_PseudocontactShiftEnergyController_hh
20 
21 // Unit Headers
23 
24 // Package Headers
27 // AUTO-REMOVED #include <core/scoring/constraints/ConstraintSet.hh>
28 
29 // Project Headers
30 #include <core/pose/Pose.fwd.hh>
33 
34 
35 // ObjexxFCL Headers
36 
37 // Utility headers
38 #include <utility/pointer/ReferenceCount.hh>
39 
40 #include <utility/vector1.hh>
41 
42 
43 //// C++ headers
44 
45 namespace protocols {
46 namespace topology_broker {
47 
49 
51 public:
52  PseudocontactShiftEnergyController(); //for factory
53 
54  virtual TopologyClaimerOP clone() const {
55  return new PseudocontactShiftEnergyController( *this );
56  }
57 
58  ///@brief type() is specifying the output name of the TopologyClaimer
59  virtual std::string type() const {
60  return _static_type_name();
61  }
62 
64  return "PseudocontactShiftEnergyController";
65  }
66 
67  virtual bool read_tag( std::string tag, std::istream & );
68 
69  virtual void set_defaults(); //eg before reading starts.
70 
71 
72  virtual void add_mover(
73  moves::RandomMover& /* random_mover */,
74  core::pose::Pose const& /*pose*/,
75  abinitio::StageID /*stageID*/, /* abinitio sampler stage */
76  core::scoring::ScoreFunction const& /*scorefxn*/,
77  core::Real /* progress */ /* progress within stage */
78  );
79 
80  virtual void init_after_reading();
81 
82 private:
83  void
85 
90 
95 
100 
105 
110 
115 
120 
125 
130 
135 
140 
145 
148 
149 }; //class PseudocontactShiftEnergyController
150 
151 }
152 }
153 
154 #endif