Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
TrieCollection.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 core/scoring/trie/TrieCollection.hh
11 /// @brief Container class for storing rotamer tries in an Energies object.
12 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13 
14 #ifndef INCLUDED_core_scoring_trie_TrieCollection_hh
15 #define INCLUDED_core_scoring_trie_TrieCollection_hh
16 
17 // Unit Headers
19 
20 // Package Headers
22 
23 // Project Headers
24 #include <basic/datacache/CacheableData.hh>
25 
26 // Utility Headers
27 // AUTO-REMOVED #include <utility/vector1.hh>
28 
29 #include <utility/vector1_bool.hh>
30 
31 
32 namespace core {
33 namespace scoring {
34 namespace trie {
35 
36 class TrieCollection : public basic::datacache::CacheableData
37 {
38 public:
40  trie( Size index ) const;
41 
42  void total_residue( Size );
43  Size total_residue() const;
44 
45  void trie( Size index, RotamerTrieBaseOP new_trie );
46 
47  virtual basic::datacache::CacheableDataOP clone() const;
48 
49 private:
51 
52 };
53 
54 
55 } // namespace trie
56 } // namespace scoring
57 } // namespace core
58 
59 #endif