Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FingerprintMultifunc.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/pockets/FingerprintMultifunc.hh
11 /// @brief Fingerprint comparison multifunction class
12 /// @author Ragul Gowthaman
13 
14 
15 #ifndef INCLUDED_protocols_pockets_FingerprintMultifunc_hh
16 #define INCLUDED_protocols_pockets_FingerprintMultifunc_hh
17 
18 // Package headers
21 // AUTO-REMOVED #include <protocols/pockets/Fingerprint.hh>
22 
25 #include <utility/vector1.hh>
26 
27 
28 namespace protocols {
29 namespace pockets {
30 
31 /// @brief Atom tree multifunction class
33 
34 public: // Creation
35 
36  // c-tor
38  NonPlaidFingerprint & nfp_in,
39  PlaidFingerprint & pfp_in,
40  core::Real const & missing_point_weight,
41  core::Real const & steric_weight,
42  core::Real const & extra_point_weight
43  );
44 
45  /// @brief Destructor
46  inline
47  virtual
49  {}
50 
51 public: // Methods
52 
53  // func
54  virtual
56  operator ()( core::optimization::Multivec const & vars ) const;
57 
58  // dfunc
59  virtual
60  void
61  dfunc( core::optimization::Multivec const & vars, core::optimization::Multivec & dE_dvars ) const;
62 
64 
65  /// @brief Error state reached; dump out current pdb.
66  virtual
67  void
68  dump( core::optimization::Multivec const & vars ) const;
69 
70 private:
71 
77 
78 }; // FingerprintMultifunc
79 
80 
81 } // namespace Pockets
82 } // namespace protocols
83 
84 
85 #endif // INCLUDED_protocols_pockets_FingerprintMultifunc_HH