Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
UnfoldedStateEnergyCalculatorMover.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 protocolsoped 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 src/protocols/UnfoldedStateEnergyCalculator/UnfoldedStateEnergyCalculatorMover.hh
11 /// @brief UnfoldedStateEnergyCalculatorMover class decalartion
12 /// @author P. douglas Renfrew (renfrew@unc.edu)
13 
14 #ifndef INCLUDED_protocols_unfolded_state_energy_calculator_UnfoldedStateEnergyCalculatorMover_hh
15 #define INCLUDED_protocols_unfolded_state_energy_calculator_UnfoldedStateEnergyCalculatorMover_hh
16 
17 // Unit Headers
19 // AUTO-REMOVED #include <protocols/unfolded_state_energy_calculator/UnfoldedStateEnergyCalculatorJobDistributor.hh>
20 #ifdef USEMPI
22 #endif
23 
24 // Package headers
25 #include <protocols/moves/Mover.hh>
26 
27 // Project headers
28 #include <core/types.hh>
29 #include <core/pose/Pose.fwd.hh>
30 
32 
34 #include <utility/vector1.hh>
35 
36 
37 // Utility Headers
38 
39 // C++ Headers
40 
41 
42 namespace protocols {
43 namespace unfolded_state_energy_calculator {
44 
45 /// @brief
47 
48 // ctors, dtors, and cctors
49 public:
50 
51  ///@brief ctor
53 #ifdef USEMPI
55 #else
57 #endif
60  core::Size frag_length,
61  std::string mut_aa,
62  bool repack_fragments,
63  bool native_sequence
64  );
65 
66  ///@brief dtor
68 
69  ///@brief cctor
71 
72 
73 // mover and job distributor interface functions
74 public:
75 
76  ///@brief
78 
79  ///@brief
80  virtual void apply( Pose & pose );
81 
82  virtual std::string get_name() const;
83 
84  ///@brief
85  virtual bool reinitialize_for_each_job() const;
86 
87  ///@brief
88  virtual bool reinitialize_for_new_input() const;
89 
90 // class specific functions
91 public:
92 
93 // data
94 private:
95 
96  // job distributor
97 #ifdef USEMPI
99 #else
101 #endif
102 
103  // score function to use when packing fragments
105 
106  // score function to use when evaluating fragments
108 
109  // the number of residues in each fragment
111 
112  // the AA to mutate the central residue to
114 
115  // will the fragments be repacked before being scored
117 
118  // will the central residue be mutated before being scored
120 
121 };
122 
123 } // UnfoldedStateEnergyCalculator
124 } // protocols
125 
126 #endif //INCLUDED_protocols_UnfoldedStateEnergyCalculator_UnfoldedStateEnergyCalculatorMover_HH