Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DarcParticleSwarmMinimizer.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/DarcParticleSwarmMinimizer.hh
11 /// @brief
12 /// @author Karen R. Khar
13 
14 
15 #ifndef INCLUDED_protocols_pockets_DarcParticleSwarmMinimizer_hh
16 #define INCLUDED_protocols_pockets_DarcParticleSwarmMinimizer_hh
17 
24 #include <utility/vector1.hh>
25 #include <basic/gpu/GPU.hh>
26 
27 namespace protocols {
28 namespace pockets {
29 
31 public:
32 
34 
36  core::Real const & missing_point_weight, core::Real const & steric_weight, core::Real const & extra_point_weight,
38  core::optimization::ParticleSwarmMinimizer(p_min, p_max),
39  nfp_( nfp_in ),
40  pfp_( pfp_in ),
41  missing_pt_(missing_point_weight),
42  steric_(steric_weight),
43  extra_pt_(extra_point_weight){};
44 
46 
48 
49  private:
50 
51  void fill_atom_arrays_( core::Size particle_inx, core::conformation::ResidueCOP ligand_rsd );
52 
53  core::Real DarcPSO_fp_compare_( core::Size particle_inx, core::Real const & missing_point_weight, core::Real const & steric_weight, core::Real const & extra_point_weight );
54 
61 
62 }; // DarcParticleSwarmMinimizer
63 
64 } // namespace pockets
65 } // namespace protocols
66 
67 #endif // INCLUDED_protocols_pockets_DarcParticleSwarmMinimizer_HH