Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DefineMovableLoops.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/DefineMovableLoops.cc
11 /// @author Eva-Maria Strauch (evas01@u.washington.edu)
12 
13 #ifndef INCLUDED_protocols_seeded_abinitio_DefineMovableLoops_hh
14 #define INCLUDED_protocols_seeded_abinitio_DefineMovableLoops_hh
15 
16 #include <core/pose/Pose.hh>
17 #include <utility/tag/Tag.fwd.hh>
18 #include <protocols/moves/Mover.hh>
20 #include <utility/string_util.hh>
23 #include <protocols/loops/Loops.hh>
24 #include <utility/vector1.hh>
25 //#include <core/scoring/ScoreFunction.fwd.hh>
26 
27 namespace protocols {
28  namespace seeded_abinitio {
29 
31  {
32  public:
34 
35  virtual ~DefineMovableLoops();
36  void apply( core::pose::Pose & pose );
37  virtual std::string get_name() const;
40 
41  void parse_my_tag( utility::tag::TagPtr const tag,
45  core::pose::Pose const & );
46 
47 
48  private: ///functions
49 
51  std::string secstr,
52  core::Size offset,
54 
55  bool is_cut( utility::vector1<Size> & cut_points, Size residue);
56 
57  bool chainbreakweights();
58 
59  void add_chainbreakweights( bool acbw );
60 
61  bool use_cutpoints();
62 
63  void use_cutpoints( bool uc );
64 
65 
66  private: /// data
67 
69 
71 
73 
74  //gather all loops for specified chains or just the ones that have a cutpoint
76 
77  ///residues specifying the seeds
79 
81 
82  ///add cutpoint variants for closure
84 
85  };
86  }//end seeded_abinitio
87 }//end protocols
88 
89 #endif