Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
CoordinateCst.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/seeded_abinitio/CoordinateCst.hh
11 /// @brief
12 /// @author Eva-Maria Strauch (evas01@u.washington.edu)
13 
14 #ifndef INCLUDED_protocols_seeded_abinitio_CoordinateCst_hh
15 #define INCLUDED_protocols_seeded_abinitio_CoordinateCst_hh
16 
17 #include <core/types.hh>
18 #include <core/pose/Pose.fwd.hh>
19 #include <utility/tag/Tag.fwd.hh>
21 #include <protocols/moves/Mover.hh>
23 #include <utility/vector1.hh>
24 
25 namespace protocols {
26 namespace seeded_abinitio {
27 
29 {
30 public:
32 
33 public:
34  CoordinateCst();
35 
36  void apply( core::pose::Pose & pose );
37  virtual std::string get_name() const;
38  virtual protocols::moves::MoverOP clone() const;
40 
41  void parse_my_tag( utility::tag::TagPtr const tag,
45  core::pose::Pose const & );
46 
47  virtual ~CoordinateCst();
48 
49 private:
50  /// stedev for the constraint function
52  /// residue number to which the coordinate constraints are anchored to
53  /// stored as string, parsed at runtime
55  /// whether to use the jump to determine the anchor residue
56  bool use_jumps_;
57  /// vector with list of residues numbers that will getcoordinate constraints.
58  /// they are parsed during runtime to be compatible with pose length changes
60  ///container for spans of residues that will get coordinate constraints
62  ///which jump atom pair to choose when the anchor residue should be part of the jump atoms
64 
65  /// which atom on the anchor residue to place the constraint onto
67 
68  ///which atom id on the moving residue to place the constraint onto
70 
71 };
72 } //seeded_abinitio
73 } // protocols
74 
75 #endif
76