Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
CAcstGenerator.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/CAcstGenerator.hh
11 /// @author Eva-Maria Strauch (evas01@u.washington.edu)
12 
13 #ifndef INCLUDED_protocols_seeded_abinitio_CAcstGenerator_hh
14 #define INCLUDED_protocols_seeded_abinitio_CAcstGenerator_hh
15 
16 #include <core/types.hh>
17 #include <core/pose/Pose.hh>
18 #include <utility/tag/Tag.fwd.hh>
20 #include <protocols/moves/Mover.hh>
26 #include <protocols/loops/Loops.hh>
27 #include <utility/vector1.hh>
28 
29 namespace protocols {
30 namespace seeded_abinitio {
31 
33  public:
35 
37 
38  void apply( core::pose::Pose & pose );
39 
40  virtual std::string get_name() const;
41  virtual protocols::moves::MoverOP clone() const;
43 
44  void parse_my_tag( utility::tag::TagPtr const tag,
48  core::pose::Pose const & );
49 
50  virtual ~CAcstGenerator();
51 
52  private:
54 
55  /// determines whether constraints for the areas should be which will be "replaced" by the seeds
57 
58  /// container for the cutpoints, since there shouldnt be constraints to cutpoints
60 
61  /// container with residues from seeds that should have constraints
63 
64  /// stddeviation for the harmonic CA constraints
66 
67  /// container that has the seed information
69 
70  /// residues for which no constraints should be derrived
72 
73  /// user specified which chain to gather the constraints from
75 
76  /// user specified to which chain of the input chain is applied to
78 
79  ///user specified a template
81 
82  /// template pdb
84 
85  /// the chain/pose that the user actually wants to read the constraints from
87 
88  /// replace constraints or add onto them
89  bool replace_;
90 
91  /// sequence separation after which the pair constraints are added
93 
94  /// distance separation
96 };
97 
98 }
99 }
100 
101 #endif