Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SICSearchPattern.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_hotspot_hashing_SICSearchPattern_hh
16 #define INCLUDED_protocols_hotspot_hashing_SICSearchPattern_hh
17 
18 #include <utility/vector1.hh>
19 #include <utility/pointer/ReferenceCount.hh>
20 #include <utility/pointer/owning_ptr.hh>
21 
22 #include <numeric/xyzVector.hh>
23 #include <numeric/xyzMatrix.hh>
24 #include <numeric/xyz.functions.hh>
25 
26 #include <core/types.hh>
27 
28 #include <core/pose/Pose.hh>
30 
31 #include <core/kinematics/Stub.hh>
32 
35 
36 namespace protocols {
37 namespace hotspot_hashing {
38 
40 {
41  public:
42  const static core::Size default_displacement = 100;
43 
45  core::pose::Pose const & source_pose,
46  core::pose::Pose const & placed_pose,
47  SearchPatternOP slide_pattern,
48  SearchPatternOP source_pattern,
49  core::Real starting_displacement = default_displacement);
50 
52  core::pose::Pose const & source_pose,
53  core::pose::Pose const & placed_pose,
54  SearchPatternOP slide_pattern,
55  core::Real starting_displacement = default_displacement);
56 
58 
59  private:
64 };
65 
66 }
67 }
68 
69 #endif