1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
// ----------------------------------------------------
// $Maintainer: Marcel Schumann $
// $Authors: Marcel Schumann $
// ----------------------------------------------------
#include <BALL/SCORING/FUNCTIONS/rescoring1D.h>
#include <BALL/KERNEL/molecularInteractions.h>
namespace BALL
{
Rescoring1D::Rescoring1D(AtomContainer& receptor, AtomContainer& reference_ligand, Options& options, String free_energy_label, ScoringFunction* sf)
: Rescoring(receptor, reference_ligand, options, free_energy_label, sf)
{
name_ = "Rescoring1D";
use_calibration_ = 1;
setup_();
}
void Rescoring1D::setup_()
{
scoring_function_->enableStoreInteractions(1);
Protein* protein = dynamic_cast<Protein*>(scoring_function_->getReceptor());
if (!protein)
{
System* sys = dynamic_cast<System*>(scoring_function_->getReceptor());
if (sys)
{
protein = sys->getProtein(0);
}
}
if (protein)
{
protein_ = protein;
}
else
{
throw BALL::Exception::GeneralException(__FILE__, __LINE__, "Rescoring1D setup error", "No Protein found in receptor object");
}
}
void Rescoring1D::generateScoreContributions_(vector<vector<double> >* matrix, vector<double>* v)
{
Size column_no = 0;
for (ResidueConstIterator it = protein_->beginResidue(); +it; it++, column_no++)
{
double score = 0;
for (AtomConstIterator it2 = it->beginAtom(); +it2; it2++)
{
if (it2->interactions) score += it2->interactions->getInteractionEnergy();
}
if (matrix)
{
(*matrix)[column_no].push_back(score);
}
else if (v)
{
v->push_back(score);
}
}
}
}
|