Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SICFast.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 #ifndef INCLUDED_protocols_sic_dock_SICFast_hh
11 #define INCLUDED_protocols_sic_dock_SICFast_hh
12 
14 
15 #include <utility/vector1.hh>
16 #include <core/id/AtomID_Map.hh>
18 #include <core/pose/Pose.fwd.hh>
19 #include <core/types.hh>
21 #include <utility/pointer/ReferenceCount.hh>
22 
23 
24 
25 
26 namespace protocols {
27 namespace sic_dock {
28 
30 public:
32 
33  SICFast();
34  SICFast(core::Real clash_dis);
35 
36  virtual ~SICFast();
37 
38  void init(
39  core::pose::Pose const & pose1
40  );
41 
42  void init(
43  core::pose::Pose const & pose1,
44  core::pose::Pose const & pose2
45  );
46 
47  void init(
48  core::pose::Pose const & pose1,
49  core::id::AtomID_Map<platform::Real> const & clash_atoms1
50  );
51 
52  void init(
53  core::pose::Pose const & pose1,
54  core::pose::Pose const & pose2,
55  core::id::AtomID_Map<platform::Real> const & clash_atoms1, // currently >0 means include in clash check
56  core::id::AtomID_Map<platform::Real> const & clash_atoms2 // could be nice if was clash radius
57  );
58 
59  // return distace xmob*pose1 must move along ori to contact xfix*pose2
60  double slide_into_contact(
61  core::kinematics::Stub const & xmob,
62  core::kinematics::Stub const & xfix,
63  Vec ori
64  ) const;
65 
66 private:
67  double CTD,CLD,CTD2,CLD2,BIN;
70 };
71 
72 
73 
74 } // namespace sic_dock
75 } // namespace protocols
76 
77 #endif