Skip to content

Commit

Permalink
Removed debugging code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Inniag committed May 1, 2018
1 parent 4ff82ab commit 23eca66
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/trajectory-analysis/chap_trajectory_analysis.cpp
Expand Up @@ -26,6 +26,7 @@
#include <string>

#include <gromacs/random/threefry.h>
#include <gromacs/utility/fatalerror.h>

#include "trajectory-analysis/chap_trajectory_analysis.hpp"

Expand Down Expand Up @@ -361,7 +362,7 @@ ChapTrajectoryAnalysis::initOptions(
//-------------------------------------------------------------------------

options -> addOption(RealOption("pm-pl-margin")
.store(&poreMappingMargin_)
.store(&poreMappingMargin_)
.defaultValue(0.75)
.description("Margin for determining pathway lining "
"residues. A residue is considered to "
Expand All @@ -371,7 +372,7 @@ ChapTrajectoryAnalysis::initOptions(
"line."));

options -> addOption(StringOption("pm-pf-sel")
.store(&pfSelString_)
.store(&pfSelString_)
.defaultValue("name CA")
.description("Selection string that determines the "
"group of atoms in each residue whose "
Expand Down Expand Up @@ -658,6 +659,7 @@ ChapTrajectoryAnalysis::initAnalysis(
}



// PREPARE SELECTIONS FOR SOLVENT PARTICLE MAPPING
//-------------------------------------------------------------------------

Expand Down Expand Up @@ -1124,7 +1126,7 @@ ChapTrajectoryAnalysis::analyzeFrame(
plResidueHydrophobicity.push_back(
resInfo_.hydrophobicity(res.first));
}
if( poreFacing[res.first])
if( poreFacing[res.first] )
{
pfResidueCoordS.push_back(res.second[SS]);
pfResidueHydrophobicity.push_back(
Expand Down Expand Up @@ -1174,7 +1176,7 @@ ChapTrajectoryAnalysis::analyzeFrame(
plHydrophobicity.ctrlPoints().at(i));
dhFrameStream.finishPointSet();
}

// estimate hydrophobicity profiles due to pore-facing residues:
SplineCurve1D pfHydrophobicity = kernelSmoother.estimate(
pfResidueCoordS,
Expand Down

0 comments on commit 23eca66

Please sign in to comment.