Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
rigid_body_moves.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
11 /// @brief
12 /// @author
13 
14 
15 #ifndef INCLUDED_protocols_rigid_rigid_body_moves_hh
16 #define INCLUDED_protocols_rigid_rigid_body_moves_hh
17 
18 
19 // Package headers
20 #include <core/types.hh>
21 #include <core/pose/Pose.fwd.hh>
23 
24 #include <utility/vector1.hh>
25 
26 
27 
28 // ObjexxFCL Headers
29 // #include <ObjexxFCL/FArray3A.hh>
30 // #include <ObjexxFCL/FArray4D.hh>
31 // #include "triplet/triplet.h"
32 
33 // // C++ Headers
34 // #include <cassert>
35 // #include <cmath>
36 // #include <cstdlib>
37 // #include <iostream>
38 // #include <map>
39 // #include <string>
40 
41 
42 // //Utility Headers
43 // #include "utility/basic_sys_util.h"
44 
45 // Forward declarations
46 
47 namespace protocols {
48 namespace rigid {
49 
50 int
52  core::pose::Pose & pose,
53  core::kinematics::MoveMap const & mm,
54  core::Real const translation_magnitude,
55  core::Real const rotation_magnitude,
56  int const dir = 0 // --> choose randomly
57 );
58 
59 
60 void
62  core::pose::Pose & pose,
63  int const jump_number,
64  core::Real const translation_magnitude,
65  core::Real const rotation_magnitude,
66  int dir = 0 // --> choose randomly
67 );
68 
69 
70 } // moves
71 } // rosetta
72 
73 #endif