Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SetupPoissonBoltzmannPotential.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/moves/SetupAPBSMover.hh
11 /// @brief Setup for Poisson-Boltzmann energy term use in scorefunction
12 /// This mover assumes you have a path to the APBS (Adaptive Poisson-Boltzmann Solver) program
13 /// in the system PATH. The executable name must be "apbs", case-sensitive.
14 /// @author Sachko Honda (honda@apl.washington.edu)
15 
16 #ifndef INCLUDED_protocols_pb_potential_SetupPoissonBoltzmannPotential_hh
17 #define INCLUDED_protocols_pb_potential_SetupPoissonBoltzmannPotential_hh
18 
19 #include <core/pose/Pose.fwd.hh>
21 #include <core/types.hh>
22 #include <core/pose/Pose.fwd.hh>
24 
25 #include <basic/options/option.hh>
26 #include <basic/options/keys/out.OptionKeys.gen.hh>
27 #include <basic/options/keys/corrections.OptionKeys.gen.hh>
28 
30 #include <protocols/moves/Mover.hh>
33 
34 #include <utility/tag/Tag.fwd.hh>
35 #include <utility/pointer/owning_ptr.hh>
36 #include <utility/pointer/access_ptr.hh>
37 #include <utility/vector1.hh>
38 
39 #include <string>
40 #include <map>
41 #include <vector>
42 
43 namespace protocols {
44 namespace pb_potential {
45 
47 public:
48 
50  static const std::string APBS_PQR_EXT;
51  static const std::string APBS_DX_EXT;
52  static const std::string DEFAULT_STATE;
54 
57  virtual void apply( core::pose::Pose & pose );
58  virtual std::string get_name() const;
59  virtual void parse_my_tag( utility::tag::TagPtr const,
63  core::pose::Pose const &);
66 
67 private:
68  protocols::simple_moves::ddGOP ddg_; // used as pre-scoring & caching state data
69 };
70 }
71 }
72 #endif