Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AllowedSeqposForGeomCst.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 // :noTabs=false:tabSize=4:indentSize=4:
4 //
5 // (c) Copyright Rosetta Commons Member Institutions.
6 // (c) This file is part of the Rosetta software suite and is made available under license.
7 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
8 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
9 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
10 
11 /// @file protocols/toolbox/match_enzdes_util/InvrotTreeNodeBase.hh
12 /// @brief Forward declaration for inverse rotamer tree node base
13 /// @author Florian Richter, flosopher@gmail.com, mar 2012
14 
15 #ifndef INCLUDED_protocols_toolbox_match_enzdes_util_AllowedSeqposForGeomCst_hh
16 #define INCLUDED_protocols_toolbox_match_enzdes_util_AllowedSeqposForGeomCst_hh
17 
18 /// unit headeers
20 
21 //project headers
22 #include <core/types.hh>
23 #include <core/pose/Pose.fwd.hh>
24 //utility headers
25 #include <utility/pointer/ReferenceCount.hh>
26 #include <utility/vector1.fwd.hh>
27 
28 //c++ heades
29 
30 namespace protocols {
31 namespace toolbox {
32 namespace match_enzdes_util {
33 
34 /// @brief a simple helper class that holds a list of what sequence positions
35 /// each geom cst is allowd to be at
36 /// not sure about the ideal home of this class yet, the matcher task
37 /// could use it too
39 
40 public:
41  typedef core::Size Size;
42 
44 
46 
47  virtual ~AllowedSeqposForGeomCst();
48 
50  num_seqpos_lists() const {
51  return seqpos_for_geomcst_.size(); }
52 
54  seqpos_for_geomcst( Size geomcst ) const;
55 
56  /// @brief this function used to live in the matcher task
57  /// pose can be passed in optionally to support the ALL tag
58  /// in the pos file
59  void
61 
62 private:
63  //dimension of this vector is num_geomcst
65 };
66 
67 
68 }
69 }
70 }
71 
72 #endif