Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ChiSet.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/dunbrack/ChiSet.hh
11 /// @brief Typedefs and forward declarations for class DunbrackRotamer
12 /// @author Phil Bradley
13 /// @author Andrew Leaver-Fay
14 
15 
16 #ifndef INCLUDED_core_pack_dunbrack_ChiSet_hh
17 #define INCLUDED_core_pack_dunbrack_ChiSet_hh
18 
19 // Package headers
20 // AUTO-REMOVED #include <core/scoring/types.hh>
21 #include <core/pack/dunbrack/DunbrackRotamer.fwd.hh> // where ChiVector and RotVector live
22 
23 // Utility headers
24 #include <utility/pointer/ReferenceCount.hh>
25 
26 #include <utility/vector1_bool.hh>
27 
28 
29 
30 namespace core {
31 namespace pack {
32 namespace dunbrack {
33 
35 {
36 public:
37  ChiSet():
38  chi( 0 ),
39  rot( 0 ),
40  ex_chi_steps( 0 ),
41  probability( 0.0 )
42  {}
43 
44  ChiSet( Size nchi ) :
45  chi( nchi, 0 ),
46  rot( nchi, 0 ),
47  ex_chi_steps( nchi, 0 ),
48  probability( 0.0 )
49  {}
50 
51  ChiSet( ChiSet const & chi_set ) :
52  ReferenceCount(),
53  chi( chi_set.chi ),
54  rot( chi_set.rot ),
55  ex_chi_steps( chi_set.ex_chi_steps ),
56  probability( chi_set.probability )
57  {}
58 
62 
63  /// total rperc for this chiset, including
65 
66 };
67 
68 
69 }
70 }
71 }
72 
73 #endif //INCLUDED_core_pack_dunbrack_ChiSet_FWD_HH
74 
75