Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ThermodynamicMover.cc
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 protocols/canonical_sampling/ThermodynamicMover.cc
11 /// @brief ThermodynamicMover methods implemented
12 /// @author
13 
14 
15 // Unit Headers
17 
18 
19 // Package Headers
20 
21 // Project Headers
22 // AUTO-REMOVED #include <core/pose/Pose.hh>
23 
24 
25 
26 // Utility Headers
27 #include <basic/Tracer.hh>
28 #include <core/types.hh>
29 #include <utility/exit.hh>
30 
31 #include <core/id/DOF_ID_Range.hh>
32 #include <utility/vector1.hh>
33 
34 
35 // C++ Headers
36 
37 using basic::T;
38 using basic::Error;
39 using basic::Warning;
40 
41 //static basic::Tracer TR( "protocols.canonical_sampling.ThermodynamicMover" );
42 
43 namespace protocols {
44 namespace canonical_sampling {
45 
46 ///@brief
48 ) : Mover()
49 {
50  Mover::type( "ThermodynamicMover" );
51 }
52 
54 
55 void
57  core::pose::Pose & /*pose*/,
58  protocols::canonical_sampling::MetropolisHastingsMover const &, /*metropolis_hastings_mover*/
59  core::Size //default=0; non-zero if trajectory is restarted
60 )
61 {}
62 
65 {
66  return 1;
67 }
68 
69 void
71  protocols::canonical_sampling::MetropolisHastingsMover const & /*metropolis_hastings_mover*/
72 )
73 {}
74 
75 void
77  core::pose::Pose & /*pose*/,
78  protocols::canonical_sampling::MetropolisHastingsMover const & /*metropolis_hastings_mover*/
79 )
80 {}
81 
82 bool
84 {
85  return false;
86 }
87 
90 {
91  return 0;
92 }
93 
96 {
97  return 0;
98 }
99 
100 void
103 )
104 {}
105 
108  core::pose::Pose & //pose
109 )
110 {
112 }
113 
114 } //moves
115 } //protocols
116