Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DihedralConstraintsScore.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 protocols/frag_picker/scores/DihedralConstraintsScore.hh
11 /// @brief
12 /// @author Dominik Gront (dgront@chem.uw.edu.pl)
13 
14 #ifndef INCLUDED_protocols_frag_picker_scores_DihedralConstraintsScore_hh
15 #define INCLUDED_protocols_frag_picker_scores_DihedralConstraintsScore_hh
16 
18 #ifdef WIN32
20 #endif
21 
23 
24 // package headers
28 // mini
30 #include <numeric/xyzVector.hh>
31 
33 #include <utility/vector1.hh>
34 
35 
36 namespace protocols {
37 namespace frag_picker {
38 namespace scores {
39 
40 /// @brief Scores a fragment with a set of Dihedral constraints
42 public:
43 
44  /// @brief Prepare an atom-based score that utilizes some user-defined atoms
45  /// @detailed User may provide names of atoms that will be cached when a new
46  /// chunk is considered (i.e. at every do_caching() call)
48  std::string>);
49 
50  /// @brief Prepare an atom-based score that utilizes the following predefined atoms: N, CA, C, O and CB
51  /// @detailed These atoms that will be cached when a new
52  /// chunk is considered (i.e. at every do_caching() call)
54 
55  /// @brief Calculates the score
57 
58 private:
61  Size get_atom_type(std::string atom_name);
63 };
64 
65 
66 /// @brief Maker class that produces a new DihedralConstraintsScore object
68 public:
69 
71  MakeFragmentScoringMethod("DihedralConstraintsScore") {
72  }
73 
75 };
76 } // scores
77 } // frag_picker
78 } // protocols
79 
80 #endif /* INCLUDED_protocols_frag_picker_scores_AtomPairConstraintsScore_HH */
81