Rosetta
Public Member Functions | Private Member Functions | Private Attributes | List of all members
protocols::stepwise::monte_carlo::mover::AddOrDeleteMover Class Reference

#include <AddOrDeleteMover.hh>

Inheritance diagram for protocols::stepwise::monte_carlo::mover::AddOrDeleteMover:
Inheritance graph
[legend]

Public Member Functions

 AddOrDeleteMover (AddMoverOP rna_add_mover, DeleteMoverOP rna_delete_mover, FromScratchMoverOP rna_from_scratch_mover)
 
 ~AddOrDeleteMover () override
 
void apply (core::pose::Pose &pose, StepWiseMove const &swa_move)
 
bool apply (core::pose::Pose &pose, std::string &move_type_string)
 
void apply (core::pose::Pose &pose_to_visualize) override
 Apply the minimizer to one pose. More...
 
std::string get_name () const override
 Each derived class must specify its name. The class name. More...
 
void set_disallow_deletion_of_last_residue (bool const setting)
 
void set_minimize_single_res (bool const setting)
 
void set_options (protocols::stepwise::monte_carlo::options::StepWiseMonteCarloOptionsCOP options)
 
void set_choose_random (bool const setting)
 
monte_carlo::submotif::SubMotifLibraryCOP submotif_library ()
 
void set_submotif_library (monte_carlo::submotif::SubMotifLibraryCOP setting)
 
- Public Member Functions inherited from protocols::moves::Mover
 Mover ()
 
virtual MoverOP create ()
 
MoverCOP get_self_ptr () const
 
MoverOP get_self_ptr ()
 
MoverCAP get_self_weak_ptr () const
 
MoverAP get_self_weak_ptr ()
 
 Mover (std::string const &type_name)
 sets the type for a mover; name_ has been removed (2010/05/14) More...
 
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...
 
virtual MoverOP clone () const
 Return a clone of the Mover object. More...
 
virtual bool reinitialize_for_each_job () const
 Inform 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
 Inform 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
 Generates a new Mover object freshly created with the default ctor. More...
 
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...
 
void set_type (std::string const &setting)
 Set the 'type' string. More...
 
std::string get_type () const
 
void type (const std::string &type_in)
 Set the 'type' string. More...
 
std::string const & type () const
 Get the set 'type' string. More...
 
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 parse_my_tag (TagCOP tag, basic::datacache::DataMap &data)
 Called by MoverFactory when constructing new Movers. Takes care of the specific mover's parsing. More...
 
void set_current_job (protocols::jobdist::BasicJobCOP job)
 
jobdist::BasicJobCOP get_current_job () const
 
virtual void set_current_tag (std::string const &new_tag)
 
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...
 
virtual void show (std::ostream &output=std::cout) const
 Outputs details about the Mover, including current settings. More...
 
virtual core::Real last_proposal_density_ratio ()
 
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 Stringsinfo ()
 non-const accessor More...
 
virtual Strings const & info () const
 const accessor More...
 
virtual void provide_citation_info (basic::citation_manager::CitationCollectionList &) const
 Provide citations to the passed CitationCollectionList Subclasses should add the info for themselves and any other classes they use. More...
 

Private Member Functions

utility::vector1< core::Sizefigure_out_actual_sample_res (core::pose::Pose const &pose) const
 

Private Attributes

AddMoverOP rna_add_mover_
 
DeleteMoverOP rna_delete_mover_
 
FromScratchMoverOP rna_from_scratch_mover_
 
bool disallow_deletion_of_last_residue_
 
StepWiseMoveSelectorOP swa_move_selector_
 
monte_carlo::submotif::SubMotifLibraryCOP submotif_library_
 
bool choose_random_
 
protocols::stepwise::monte_carlo::options::StepWiseMonteCarloOptionsCOP options_
 

Additional Inherited Members

- Public Types inherited from protocols::moves::Mover
typedef utility::tag::TagCOP TagCOP
 
typedef core::pose::Pose Pose
 
typedef core::pose::PoseCOP PoseCOP
 
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. 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...
 

Constructor & Destructor Documentation

◆ AddOrDeleteMover()

protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::AddOrDeleteMover ( AddMoverOP  rna_add_mover,
DeleteMoverOP  rna_delete_mover,
FromScratchMoverOP  rna_from_scratch_mover 
)

◆ ~AddOrDeleteMover()

protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::~AddOrDeleteMover ( )
overridedefault

Member Function Documentation

◆ apply() [1/3]

bool protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::apply ( core::pose::Pose pose,
std::string &  move_type_string 
)

◆ apply() [2/3]

void protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::apply ( core::pose::Pose pose,
StepWiseMove const &  swa_move 
)

◆ apply() [3/3]

void protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::apply ( core::pose::Pose pose_to_visualize)
overridevirtual

Apply the minimizer to one pose.

Implements protocols::moves::Mover.

References apply().

◆ figure_out_actual_sample_res()

utility::vector1< core::Size > protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::figure_out_actual_sample_res ( core::pose::Pose const &  pose) const
private

◆ get_name()

std::string protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::get_name ( ) const
overridevirtual

Each derived class must specify its name. The class name.

Implements protocols::moves::Mover.

◆ set_choose_random()

void protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::set_choose_random ( bool const  setting)
inline

References choose_random_.

◆ set_disallow_deletion_of_last_residue()

void protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::set_disallow_deletion_of_last_residue ( bool const  setting)
inline

◆ set_minimize_single_res()

void protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::set_minimize_single_res ( bool const  setting)

◆ set_options()

void protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::set_options ( protocols::stepwise::monte_carlo::options::StepWiseMonteCarloOptionsCOP  options)

References options_, and rna_add_mover_.

◆ set_submotif_library()

void protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::set_submotif_library ( monte_carlo::submotif::SubMotifLibraryCOP  setting)
inline

References submotif_library_.

◆ submotif_library()

monte_carlo::submotif::SubMotifLibraryCOP protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::submotif_library ( )
inline

References submotif_library_.

Member Data Documentation

◆ choose_random_

bool protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::choose_random_
private

Referenced by apply(), and set_choose_random().

◆ disallow_deletion_of_last_residue_

bool protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::disallow_deletion_of_last_residue_
private

◆ options_

protocols::stepwise::monte_carlo::options::StepWiseMonteCarloOptionsCOP protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::options_
private

Referenced by apply(), and set_options().

◆ rna_add_mover_

AddMoverOP protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::rna_add_mover_
private

◆ rna_delete_mover_

DeleteMoverOP protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::rna_delete_mover_
private

Referenced by apply(), and set_minimize_single_res().

◆ rna_from_scratch_mover_

FromScratchMoverOP protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::rna_from_scratch_mover_
private

Referenced by apply().

◆ submotif_library_

monte_carlo::submotif::SubMotifLibraryCOP protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::submotif_library_
private

◆ swa_move_selector_

StepWiseMoveSelectorOP protocols::stepwise::monte_carlo::mover::AddOrDeleteMover::swa_move_selector_
private

Referenced by apply().


The documentation for this class was generated from the following files: