Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
NtoC_RCG.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 protocols/forge/constraints/NtoC_RCG.hh
11 ///
12 /// @brief
13 /// @author Nobuyasu Koga( nobuyasu@uw.edu ) , October 2009
14 /// @modified Tom Linsky (tlinsky@uw.edu), Nov 2012
15 
16 #ifndef INCLUDED_protocols_forge_constraints_NtoC_RCG_hh
17 #define INCLUDED_protocols_forge_constraints_NtoC_RCG_hh
18 
19 // Unit Header
21 
22 // Package Header
24 
25 // Proeject Header
26 #include <core/pose/Pose.fwd.hh>
27 #include <core/types.hh>
28 
29 // AUTO-REMOVED #include <string>
30 
31 #include <utility/vector1.hh>
32 
33 
34 namespace protocols{
35 namespace forge{
36 namespace constraints{
37 
39 public:
40 
41  typedef core::Size Size;
42  typedef core::Real Real;
44 
45 public:
46 
47  NtoC_RCG();
48 
49  NtoC_RCG( NtoC_RCG const & rval );
50 
51  NtoC_RCG( Real const dist, Real const coef );
52 
53  virtual ~NtoC_RCG();
54 
55  virtual void
56  parse_my_tag( TagPtr const tag,
58  protocols::filters::Filters_map const & filters,
59  protocols::moves::Movers_map const & movers,
60  core::pose::Pose const & pose );
61 
62  virtual std::string
63  get_name() const;
64 
66  fresh_instance() const;
67 
69  clone() const;
70 
71  virtual
72  void generate_remodel_constraints( Pose const & pose );
73 
74  void set_weight( Real const coef );
75 
76  void set_distance( Real const dist );
77 
78 private:
79 
82 
83 }; //class NtoC_RCG
84 
85 
86 } //namespace constraints
87 } //namespace forge
88 } //namespace protocols
89 
90 
91 
92 
93 #endif // INCLUDED_protocols_forge_constraints_NtoC_RCG_HH