|
Rosetta 3.5
|
#include <AtrGrid.hh>


Public Member Functions | |
| AtrGrid () | |
| virtual void | refresh (core::pose::Pose const &pose, core::Vector const ¢er, core::Size const &ligand_chain_id_to_exclude) |
| populate the grid with values based on a passed pose More... | |
| virtual void | refresh (core::pose::Pose const &pose, core::Vector const ¢er) |
| populate the grid with values based on a passed pose More... | |
| virtual void | refresh (core::pose::Pose const &pose, core::Vector const ¢er, utility::vector1< core::Size > ligand_chain_ids_to_exclude) |
| populate the grid with values based on a passed pose More... | |
| virtual utility::json_spirit::Value | serialize () |
| serialize the SingleGrid to a json_spirit object More... | |
| virtual void | deserialize (utility::json_spirit::mObject data) |
| deserialize a json_spirit object to a SingleGrid More... | |
| void | parse_my_tag (utility::tag::TagPtr const tag) |
| setup a grid based on RosettaScripts input More... | |
Public Member Functions inherited from protocols::qsar::scoring_grid::SingleGrid | |
| SingleGrid (std::string type) | |
| virtual | ~SingleGrid () |
| virtual void | initialize (core::Vector const ¢er, core::Real width, core::Real resolution) |
| initialize a grid of zeros with a given centerpoint, width and resolution (in angstroms). More... | |
| virtual void | set_chain (char chain) |
| set the chain around which to calculate the grid More... | |
| char | get_chain () |
| get the chain around which the grid is calculated More... | |
| core::grid::CartGrid < core::Real > const & | get_grid () |
| return a constant reference to the grid More... | |
| void | set_type (std::string type) |
| set the grid type More... | |
| virtual std::string | get_type () |
| return the grids type More... | |
| void | set_center (core::Vector center) |
| set the center of the grid More... | |
| core::Vector | get_center () |
| get the center of the grid More... | |
| core::Real | get_min_value () const |
| get the max score value in the grid More... | |
| core::Real | get_max_value () const |
| get the minimum score value in the grid More... | |
| core::Real | get_point (core::Real x, core::Real y, core::Real z) |
| get the value of a single point in the grid based on pdb coordinates More... | |
| core::Real | get_point (core::Vector coords) |
| get the value of a single point in the grid based on pdb coordinates More... | |
| numeric::xyzVector< core::Size > | get_dimensions () |
| get dimensions of the grid More... | |
| core::Vector | get_pdb_coords (int x, int y, int z) |
| get the pdb coordinates based on grid point coordinates More... | |
| core::Vector | get_pdb_coords (core::grid::CartGrid< core::Real >::GridPt gridpt) |
| get the pdb coordinates based on grid point coordinates More... | |
| virtual core::Real | score (core::conformation::Residue const &residue, core::Real const max_score, qsarMapOP qsar_map) |
| return the current score of a residue using the current grid More... | |
| virtual core::Real | atom_score (core::conformation::Residue const &residue, core::Size atomno, qsarMapOP qsar_map) |
| return the current score of an atom using the current grid More... | |
| void | grid_to_kin (utility::io::ozstream &out, core::Real min_val, core::Real max_val, core::Size stride) |
| virtual bool | is_in_grid (core::conformation::Residue const &residue) |
| check to see if residue is in grid More... | |
| std::list< std::pair < core::Vector, core::Real > > | get_point_value_list_within_range (core::Real lower_bound, core::Real upper_bound, core::Size stride) |
| virtual void | dump_BRIX (std::string const &prefix) |
| output a BRIX formatted grid. This really does not work well but is being left for legacy purposes More... | |
| void | set_sphere (core::Vector const &coords, core::Real radius, core::Real value) |
| void | set_ring (core::Vector const &coords, core::Real inner_radius, core::Real outer_radius, core::Real value) |
| void | diffuse_ring (core::Vector const &coords, core::Real radius, core::Real width, core::Real magnitude) |
| void | set_distance_sphere (core::Vector const &coords, core::Real cutoff) |
| void | set_point (core::Vector const &coords, core::Real value) |
| void | set_distance_sphere_for_atom (core::Real const &atom_shell, core::Vector const &coords, core::Real cutoff) |
| void | set_score_sphere_for_atom (numeric::interpolation::spline::InterpolatorOP lj_spline, core::Vector const &coords, core::Real cutoff) |
| void | fill_with_value (core::Real) |
| the entire grid with some value More... | |
Public Member Functions inherited from protocols::qsar::scoring_grid::GridBase | |
| GridBase () | |
| virtual | ~GridBase () |
Private Member Functions | |
| void | set_protein_rings (core::conformation::Residue const &rsd) |
| void | set_ligand_rings (core::conformation::Residue const &rsd, utility::vector1< core::Size > ligand_chain_ids_to_exclude) |
Private Attributes | |
| core::Real | inner_radius_ |
| core::Real | outer_radius_ |
| core::Real | bb_ |
| core::Real | sc_ |
| core::Real | ligand_ |
Definition at line 26 of file AtrGrid.hh.
| protocols::qsar::scoring_grid::AtrGrid::AtrGrid | ( | ) |
Definition at line 58 of file AtrGrid.cc.
|
virtual |
deserialize a json_spirit object to a SingleGrid
Reimplemented from protocols::qsar::scoring_grid::SingleGrid.
Definition at line 108 of file AtrGrid.cc.
References bb_, protocols::qsar::scoring_grid::SingleGrid::deserialize(), inner_radius_, ligand_, outer_radius_, and sc_.
|
virtual |
setup a grid based on RosettaScripts input
Implements protocols::qsar::scoring_grid::SingleGrid.
Definition at line 70 of file AtrGrid.cc.
References bb_, inner_radius_, ligand_, outer_radius_, and sc_.
|
virtual |
populate the grid with values based on a passed pose
Implements protocols::qsar::scoring_grid::SingleGrid.
Definition at line 125 of file AtrGrid.cc.
Referenced by refresh().
|
virtual |
populate the grid with values based on a passed pose
Implements protocols::qsar::scoring_grid::SingleGrid.
Definition at line 119 of file AtrGrid.cc.
References refresh().
|
virtual |
populate the grid with values based on a passed pose
Implements protocols::qsar::scoring_grid::SingleGrid.
Definition at line 164 of file AtrGrid.cc.
References core::conformation::Residue::is_protein(), core::pose::Pose::residue(), set_ligand_rings(), set_protein_rings(), and core::pose::Pose::total_residue().
|
virtual |
serialize the SingleGrid to a json_spirit object
Reimplemented from protocols::qsar::scoring_grid::SingleGrid.
Definition at line 92 of file AtrGrid.cc.
References bb_, inner_radius_, ligand_, outer_radius_, sc_, and protocols::qsar::scoring_grid::SingleGrid::serialize().
|
private |
Definition at line 145 of file AtrGrid.cc.
References core::conformation::Residue::chain(), inner_radius_, ligand_, core::conformation::Residue::nheavyatoms(), outer_radius_, protocols::qsar::scoring_grid::SingleGrid::set_ring(), and core::conformation::Residue::xyz().
Referenced by refresh().
|
private |
Definition at line 132 of file AtrGrid.cc.
References bb_, core::conformation::Residue::first_sidechain_atom(), inner_radius_, core::conformation::Residue::last_backbone_atom(), core::conformation::Residue::nheavyatoms(), outer_radius_, sc_, protocols::qsar::scoring_grid::SingleGrid::set_ring(), and core::conformation::Residue::xyz().
Referenced by refresh().
|
private |
Definition at line 49 of file AtrGrid.hh.
Referenced by deserialize(), parse_my_tag(), serialize(), and set_protein_rings().
|
private |
Definition at line 47 of file AtrGrid.hh.
Referenced by deserialize(), parse_my_tag(), serialize(), set_ligand_rings(), and set_protein_rings().
|
private |
Definition at line 51 of file AtrGrid.hh.
Referenced by deserialize(), parse_my_tag(), serialize(), and set_ligand_rings().
|
private |
Definition at line 48 of file AtrGrid.hh.
Referenced by deserialize(), parse_my_tag(), serialize(), set_ligand_rings(), and set_protein_rings().
|
private |
Definition at line 50 of file AtrGrid.hh.
Referenced by deserialize(), parse_my_tag(), serialize(), and set_protein_rings().
1.8.4