|
Rosetta 3.5
|
#include <DockMCMCycle.hh>


Public Member Functions | |
| DockMCMCycle () | |
| Default constructor. More... | |
| DockMCMCycle (core::Size const rb_jump, core::scoring::ScoreFunctionOP scorefxn) | |
| Constructor with two arguments: The first argument is the jump number to dock over. The second is a scorefunction that will be used for docking and packing. More... | |
| DockMCMCycle (core::Size const rb_jump, core::scoring::ScoreFunctionOP scorefxn, core::scoring::ScoreFunctionOP scorefxn_pack) | |
| Constructor with arguments: The first argument is the jump number to dock over. The second is a scorefunction that will be used for docking, the third is a scorefunction that will be used for packing. More... | |
| DockMCMCycle (DockJumps const movable_jumps, core::scoring::ScoreFunctionOP scorefxn, core::scoring::ScoreFunctionOP scorefxn_pack) | |
| Constructor with arguments: The first argument is a DockJumps vector. The second is a scorefunction that will be used for docking, the third is a scorefunction that will be used for packing. More... | |
| ~DockMCMCycle () | |
| protocols::moves::MoverOP | clone () const |
| clone has to be overridden only if clone invocation is expected. More... | |
| void | set_default () |
| Sets the default values for all members. More... | |
| void | set_move_map (core::kinematics::MoveMapOP movemap) |
| void | set_min_type (std::string min_type) |
| void | set_task_factory (core::pack::task::TaskFactoryCOP tf) |
| moves::MonteCarloOP | get_mc () |
| virtual void | apply (core::pose::Pose &pose) |
| virtual std::string | get_name () const |
| Each derived class must specify its name. The class name. More... | |
| void | show (std::ostream &out=std::cout) const |
| void | reset_cycle_index () |
| void | init_mc (core::pose::Pose &pose) |
| void | set_scmin (bool setting) |
| void | set_rtmin (bool setting) |
| void | set_rot_magnitude (core::Real value) |
| DockJumps const & | movable_jumps () const |
Public Member Functions inherited from protocols::moves::Mover | |
| Mover () | |
| virtual | ~Mover () |
| virtual MoverSP | create () |
| virtual void | apply (core::io::serialization::PipeMap &pmap) |
| virtual void | parse_state (SerializableState const &state) |
| virtual void | parse_def (utility::lua::LuaObject const &def, utility::lua::LuaObject const &score_fxns, utility::lua::LuaObject const &tasks, MoverCacheSP cache) |
| virtual void | save_state (SerializableState &state) |
| Mover (std::string const &type_name) | |
| sets the type for a mover; name_ has been removed (2010/05/14) More... | |
| Mover (Mover const &other) | |
| Mover & | operator= (Mover const &other) |
| assignment operator More... | |
| virtual core::Real | last_proposal_density_ratio () |
| std::string const & | type () const |
| std::string | get_current_tag () const |
| A tag is a unique identifier used to identify structures produced by this Mover. get_current_tag() returns the tag, and set_current_tag( std::string tag ) sets the tag. This functionality is not intended for use with the 2008 job distributor. More... | |
| void | set_current_tag (std::string const &new_tag) |
| virtual void | set_input_pose (PoseCOP pose) |
| setter for poses contained for rms More... | |
| virtual void | set_native_pose (PoseCOP pose) |
| setter for native poses contained for rms -— we should get rid of this method? it is widely used, but a bit unsafe More... | |
| PoseCOP | get_input_pose () const |
| PoseCOP | get_native_pose () const |
| virtual void | test_move (Pose &pose) |
| : Unit test support function. Apply one move to a given pose. Allows extra test specific functions to be called before applying More... | |
| void | type (const std::string &type_in) |
| virtual void | parse_my_tag (TagPtr const tag, DataMap &data, Filters_map const &filters, Movers_map const &movers, Pose const &pose) |
| Called by MoverFactory when constructing new Movers. Takes care of the specific mover's parsing. More... | |
| std::string | get_type () const |
| MoverStatus | get_last_move_status () const |
| end parser interface, start Job Distributor interface///////////// More... | |
| void | reset_status () |
| resets status to SUCCESS, meant to be used before an apply(). The job distributor (august 08 vintage) uses this to ensure non-accumulation of status across apply()s. More... | |
| virtual core::pose::PoseOP | get_additional_output () |
| Mechanism by which a mover may return multiple output poses from a single input pose. More... | |
| virtual void | clear_info () |
| Strings container can be used to return miscellaneous info (as std::string) from a mover, such as notes about the results of apply(). The job distributor (Apr 09 vintage) will check this function to see if your protocol wants to add string info to the Job that ran this mover. One way this can be useful is that later, a JobOutputter may include/append this info to an output file. More... | |
| virtual Strings & | info () |
| non-const accessor More... | |
| virtual Strings const & | info () const |
| const accessor More... | |
| virtual bool | reinitialize_for_each_job () const |
| this function informs the job distributor (august 08 vintage) whether this object needs to be freshly regenerated on each use. More... | |
| virtual bool | reinitialize_for_new_input () const |
| this function informs the job distributor (august 08 vintage) whether this object needs to be regenerated when the input pose is about to change (for example, if the mover has special code on the first apply() that is only valid for that one input pose). More... | |
| virtual MoverOP | fresh_instance () const |
| this is like clone(), except it generates a new mover object freshly created with the default ctor. This function should be pure virtual but that would disrupt the code base; MAKE SURE YOU DEFINE IT if you want to have your mover be a protocol handed to the job distributor (august 08 vintage). More... | |
| void | set_current_job (protocols::jobdist::BasicJobCOP job) |
| jobdist::BasicJobCOP | get_current_job () const |
Private Types | |
| typedef core::Real | Real |
Private Member Functions | |
| void | setup_protocol (core::pose::Pose &pose) |
| main entrance to do monte carlo minimization More... | |
Private Attributes | |
| core::scoring::ScoreFunctionOP | scorefxn_ |
| core::scoring::ScoreFunctionOP | scorefxn_pack_ |
| core::kinematics::MoveMapOP | movemap_ |
| moves::CycleMoverOP | dock_mcm_cycle_ |
| moves::MonteCarloOP | mc_ |
| DockJumps | movable_jumps_ |
| core::Real | trans_magnitude_ |
| core::Real | rot_magnitude_ |
| bool | rtmin_ |
| bool | scmin_ |
| core::pack::task::TaskFactoryOP | tf_ |
| tf_ will be used internally by dockinghires. It will be initialized through the init_task_factory_ below More... | |
| core::Size | repack_period_ |
| task_factory_ is used by outside movers to set the internal taskfactory. Does not actually override internal TF! init_task_factory_ instead acts as a starting point and the docking mover masks over init_task_factory More... | |
| bool | norepack1_ |
| bool | norepack2_ |
| core::Real | min_tolerance_ |
| bool | nb_list_ |
| std::string | min_type_ |
Friends | |
| std::ostream & | operator<< (std::ostream &out, const DockMCMCycle &dp) |
Additional Inherited Members | |
Public Types inherited from protocols::moves::Mover | |
| typedef utility::tag::TagPtr | TagPtr |
| typedef core::pose::Pose | Pose |
| typedef core::pose::PoseCOP | PoseCOP |
| typedef protocols::filters::Filters_map | Filters_map |
| typedef std::list< std::string > | Strings |
Static Public Member Functions inherited from protocols::moves::Mover | |
| static std::string | name () |
| static void | register_options () |
| overload this static method if you access options within the mover. these options will end up in -help of your application if users of this mover call register_options. do this recursively! if you use movers within your mover, call their register_options in your register_options() method. More... | |
Protected Member Functions inherited from protocols::moves::Mover | |
| void | set_last_move_status (MoverStatus status) |
| nonvirtual setter for MoverStatus last_status_. Protected means that only the mover itself will be able to change its own status. The job distributor (august 08 vintage) is aware of status set with this function and will do what the MoverStatus says. More... | |
Definition at line 49 of file DockMCMCycle.hh.
|
private |
Definition at line 51 of file DockMCMCycle.hh.
| protocols::docking::DockMCMCycle::DockMCMCycle | ( | ) |
Default constructor.
Definition at line 82 of file DockMCMCycle.cc.
References movable_jumps_, set_default(), and protocols::moves::Mover::type().
Referenced by clone().
| protocols::docking::DockMCMCycle::DockMCMCycle | ( | core::Size const | rb_jump, |
| core::scoring::ScoreFunctionOP | scorefxn | ||
| ) |
Constructor with two arguments: The first argument is the jump number to dock over. The second is a scorefunction that will be used for docking and packing.
Definition at line 91 of file DockMCMCycle.cc.
References movable_jumps_, set_default(), and protocols::moves::Mover::type().
| protocols::docking::DockMCMCycle::DockMCMCycle | ( | core::Size const | rb_jump, |
| core::scoring::ScoreFunctionOP | scorefxn, | ||
| core::scoring::ScoreFunctionOP | scorefxn_pack | ||
| ) |
Constructor with arguments: The first argument is the jump number to dock over. The second is a scorefunction that will be used for docking, the third is a scorefunction that will be used for packing.
Definition at line 103 of file DockMCMCycle.cc.
References movable_jumps_, set_default(), and protocols::moves::Mover::type().
| protocols::docking::DockMCMCycle::DockMCMCycle | ( | DockJumps const | movable_jumps, |
| core::scoring::ScoreFunctionOP | scorefxn, | ||
| core::scoring::ScoreFunctionOP | scorefxn_pack | ||
| ) |
Constructor with arguments: The first argument is a DockJumps vector. The second is a scorefunction that will be used for docking, the third is a scorefunction that will be used for packing.
Definition at line 116 of file DockMCMCycle.cc.
References movable_jumps(), movable_jumps_, set_default(), and protocols::moves::Mover::type().
| protocols::docking::DockMCMCycle::~DockMCMCycle | ( | ) |
Definition at line 128 of file DockMCMCycle.cc.
|
virtual |
docking high resolution apply function
Implements protocols::moves::Mover.
Definition at line 198 of file DockMCMCycle.cc.
References dock_mcm_cycle_, init_mc(), and protocols::TR().
|
virtual |
clone has to be overridden only if clone invocation is expected.
clone is meant to return an OP'ed deep copy of this object. This really should be a pure virtual in the base class, but adding pure virtuals to Mover would massively disrupt the code. This default implementation crashes at runtime instead of compiletime if you try to call it. If this code is causing you problems, your Mover needs to override this function.
Reimplemented from protocols::moves::Mover.
Definition at line 131 of file DockMCMCycle.cc.
References DockMCMCycle().
|
inline |
Definition at line 92 of file DockMCMCycle.hh.
References mc_.
|
virtual |
Each derived class must specify its name. The class name.
Implements protocols::moves::Mover.
Definition at line 215 of file DockMCMCycle.cc.
| void protocols::docking::DockMCMCycle::init_mc | ( | core::pose::Pose & | pose) |
Definition at line 225 of file DockMCMCycle.cc.
References mc_, setup_protocol(), show(), and protocols::TR().
Referenced by apply().
| DockJumps const & protocols::docking::DockMCMCycle::movable_jumps | ( | ) | const |
Definition at line 376 of file DockMCMCycle.cc.
References movable_jumps_.
Referenced by DockMCMCycle().
| void protocols::docking::DockMCMCycle::reset_cycle_index | ( | ) |
Definition at line 220 of file DockMCMCycle.cc.
References dock_mcm_cycle_.
| void protocols::docking::DockMCMCycle::set_default | ( | ) |
Sets the default values for all members.
Definition at line 141 of file DockMCMCycle.cc.
References core::scoring::ScoreFunctionFactory::create_score_function(), docking, mc_, min_tolerance_, min_type_, movable_jumps_, movemap_, nb_list_, repack_period_, rot_magnitude_, rtmin_, scmin_, scorefxn_, scorefxn_pack_, tf_, and trans_magnitude_.
Referenced by DockMCMCycle().
|
inline |
Definition at line 89 of file DockMCMCycle.hh.
References min_type_.
| void protocols::docking::DockMCMCycle::set_move_map | ( | core::kinematics::MoveMapOP | movemap) |
Definition at line 192 of file DockMCMCycle.cc.
References movemap_.
|
inline |
Definition at line 108 of file DockMCMCycle.hh.
References rot_magnitude_.
|
inline |
Definition at line 107 of file DockMCMCycle.hh.
References rtmin_.
|
inline |
Definition at line 106 of file DockMCMCycle.hh.
References scmin_.
| void protocols::docking::DockMCMCycle::set_task_factory | ( | core::pack::task::TaskFactoryCOP | tf) |
Definition at line 136 of file DockMCMCycle.cc.
References tf_.
|
private |
main entrance to do monte carlo minimization
dock_mcm_protocol
Definition at line 257 of file DockMCMCycle.cc.
References protocols::moves::MoverContainer::add_mover(), dock_mcm_cycle_, mc_, min_tolerance_, min_type_, movemap_, nb_list_, core::pack::pack_rotamers(), protocols::rigid::partner_downstream, repack_period_, rot_magnitude_, rtmin_, scmin_, scorefxn_, scorefxn_pack_, tf_, and trans_magnitude_.
Referenced by init_mc().
| void protocols::docking::DockMCMCycle::show | ( | std::ostream & | out = std::cout) | const |
Show the complete setup of the docking protocol
Definition at line 331 of file DockMCMCycle.cc.
Referenced by init_mc().
|
friend |
Definition at line 335 of file DockMCMCycle.cc.
|
private |
Definition at line 117 of file DockMCMCycle.hh.
Referenced by apply(), reset_cycle_index(), and setup_protocol().
|
private |
Definition at line 118 of file DockMCMCycle.hh.
Referenced by get_mc(), init_mc(), set_default(), and setup_protocol().
|
private |
Definition at line 138 of file DockMCMCycle.hh.
Referenced by set_default(), and setup_protocol().
|
private |
Definition at line 140 of file DockMCMCycle.hh.
Referenced by set_default(), set_min_type(), and setup_protocol().
|
private |
Definition at line 123 of file DockMCMCycle.hh.
Referenced by DockMCMCycle(), movable_jumps(), protocols::docking::operator<<(), and set_default().
|
private |
Definition at line 115 of file DockMCMCycle.hh.
Referenced by set_default(), set_move_map(), and setup_protocol().
|
private |
Definition at line 139 of file DockMCMCycle.hh.
Referenced by set_default(), and setup_protocol().
|
private |
Definition at line 134 of file DockMCMCycle.hh.
|
private |
Definition at line 135 of file DockMCMCycle.hh.
|
private |
task_factory_ is used by outside movers to set the internal taskfactory. Does not actually override internal TF! init_task_factory_ instead acts as a starting point and the docking mover masks over init_task_factory
Definition at line 132 of file DockMCMCycle.hh.
Referenced by set_default(), and setup_protocol().
|
private |
Definition at line 124 of file DockMCMCycle.hh.
Referenced by protocols::docking::operator<<(), set_default(), set_rot_magnitude(), and setup_protocol().
|
private |
Definition at line 125 of file DockMCMCycle.hh.
Referenced by set_default(), set_rtmin(), and setup_protocol().
|
private |
Definition at line 125 of file DockMCMCycle.hh.
Referenced by set_default(), set_scmin(), and setup_protocol().
|
private |
Definition at line 113 of file DockMCMCycle.hh.
Referenced by protocols::docking::operator<<(), set_default(), and setup_protocol().
|
private |
Definition at line 114 of file DockMCMCycle.hh.
Referenced by protocols::docking::operator<<(), set_default(), and setup_protocol().
|
private |
tf_ will be used internally by dockinghires. It will be initialized through the init_task_factory_ below
Definition at line 129 of file DockMCMCycle.hh.
Referenced by set_default(), set_task_factory(), and setup_protocol().
|
private |
Definition at line 124 of file DockMCMCycle.hh.
Referenced by protocols::docking::operator<<(), set_default(), and setup_protocol().
1.8.4