Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ProteinSCSampler.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/match/upstream/ProteinSCSampler.hh
12 /// @brief Class declarations for base class and simple derived class for SC sampling
13 /// @author Alex Zanghellini (zanghell@u.washington.edu)
14 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com), porting to mini
15 
16 #ifndef INCLUDED_protocols_match_upstream_ProteinSCSampler_hh
17 #define INCLUDED_protocols_match_upstream_ProteinSCSampler_hh
18 
19 // Unit headers
21 
22 // Package headers
24 
25 // Project headers
27 // AUTO-REMOVED #include <core/pack/dunbrack/DunbrackRotamer.hh>
28 
29 // Utility headers
30 #include <utility/pointer/ReferenceCount.hh>
31 
33 
34 
35 namespace protocols {
36 namespace match {
37 namespace upstream {
38 
40 public:
43 
44 public:
45  virtual ~ProteinSCSampler();
46 
47  virtual
49  samples(
50  ScaffoldBuildPoint const & bb_conf,
51  core::chemical::ResidueType const & restype
52  ) const = 0;
53 
54 };
55 
56 /// @brief Basic class for sidechain sampling that pulls data from the
57 /// Dunbrack rotamer library. The samples that are returned are the basic
58 /// rotamers and do not include any expansions by the "ex" flags.
60 
61 public:
62  virtual
64  samples(
65  ScaffoldBuildPoint const & bb_conf,
66  core::chemical::ResidueType const & restype
67  ) const;
68 
69 };
70 
71 }
72 }
73 }
74 
75 #endif