Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
trie_vs_trie.fwd.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/trie_vs_trie.fwd.hh
11 /// @brief
12 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13 
14 #ifndef INCLUDED_core_scoring_trie_trie_vs_trie_fwd_hh
15 #define INCLUDED_core_scoring_trie_trie_vs_trie_fwd_hh
16 
18 
19 #include <core/types.hh>
20 
21 
22 // Utility Headers
23 #include <utility/vector1.fwd.hh>
24 
25 // ObjexxFCL Headers
26 #include <ObjexxFCL/FArray2D.fwd.hh>
27 #include <ObjexxFCL/FArray2A.fwd.hh>
28 
29 namespace core {
30 namespace scoring {
31 namespace trie {
32 
33 
34 template < class AT, class CPDAT1, class CPDAT2, class CPFXN, class SFXN >
35 void
37  RotamerTrie< AT, CPDAT1 > & trie1,
38  RotamerTrie< AT, CPDAT2 > & trie2,
39  CPFXN & count_pair,
40  SFXN & score_function,
41  ObjexxFCL::FArray2D< core::PackerEnergy > & pair_energy_table,
42  ObjexxFCL::FArray2D< core::PackerEnergy > & temp_table
43 );
44 
45 
46 void
48  utility::vector1< Size > const & total_rotamers_2_unique_rotamers_1,
49  utility::vector1< Size > const & total_rotamers_2_unique_rotamers_2,
50  ObjexxFCL::FArray2D< core::PackerEnergy > & pair_energy_table,
51  ObjexxFCL::FArray2A< core::PackerEnergy > const & inorder_table
52 );
53 
54 } // namespace trie
55 } // namespace scoring
56 } // namespace core
57 
58 
59 #endif