Skip to content
Snippets Groups Projects
Commit f2b3578e authored by Gareth Tribello's avatar Gareth Tribello
Browse files

Mistakes in switching function input for multicolvar now trigger errors.

Fixes #53
parent 64eded77
No related branches found
No related tags found
No related merge requests found
...@@ -136,7 +136,9 @@ use_sf(false) ...@@ -136,7 +136,9 @@ use_sf(false)
use_sf=true; use_sf=true;
weightHasDerivatives=true; weightHasDerivatives=true;
sf1.set(sfinput,errors); sf1.set(sfinput,errors);
if( errors.length()!=0 ) error("problem reading SWITCH keyword : " + errors );
sf2.set(sfinput,errors); sf2.set(sfinput,errors);
if( errors.length()!=0 ) error("problem reading SWITCH keyword : " + errors );
log.printf(" only calculating angles for atoms separated by less than %s\n", sf1.description().c_str() ); log.printf(" only calculating angles for atoms separated by less than %s\n", sf1.description().c_str() );
} else { } else {
parse("SWITCHA",sfinput); parse("SWITCHA",sfinput);
...@@ -144,9 +146,11 @@ use_sf(false) ...@@ -144,9 +146,11 @@ use_sf(false)
use_sf=true; use_sf=true;
weightHasDerivatives=true; weightHasDerivatives=true;
sf1.set(sfinput,errors); sf1.set(sfinput,errors);
if( errors.length()!=0 ) error("problem reading SWITCHA keyword : " + errors );
sfinput.clear(); parse("SWITCHB",sfinput); sfinput.clear(); parse("SWITCHB",sfinput);
if(sfinput.length()==0) error("found SWITCHA keyword without SWITCHB"); if(sfinput.length()==0) error("found SWITCHA keyword without SWITCHB");
sf2.set(sfinput,errors); sf2.set(sfinput,errors);
if( errors.length()!=0 ) error("problem reading SWITCHB keyword : " + errors );
log.printf(" only calculating angles when the distance between GROUPA and GROUPB atoms is less than %s\n", sf1.description().c_str() ); log.printf(" only calculating angles when the distance between GROUPA and GROUPB atoms is less than %s\n", sf1.description().c_str() );
log.printf(" only calculating angles when the distance between GROUPA and GROUPC atoms is less than %s\n", sf2.description().c_str() ); log.printf(" only calculating angles when the distance between GROUPA and GROUPC atoms is less than %s\n", sf2.description().c_str() );
} }
......
...@@ -100,15 +100,19 @@ PLUMED_MULTICOLVAR_INIT(ao) ...@@ -100,15 +100,19 @@ PLUMED_MULTICOLVAR_INIT(ao)
std::string sfinput,errors; parse("SWITCH",sfinput); std::string sfinput,errors; parse("SWITCH",sfinput);
if( sfinput.length()>0 ){ if( sfinput.length()>0 ){
sf1.set(sfinput,errors); sf1.set(sfinput,errors);
if( errors.length()!=0 ) error("problem reading SWITCH keyword : " + errors );
sf2.set(sfinput,errors); sf2.set(sfinput,errors);
if( errors.length()!=0 ) error("problem reading SWITCH keyword : " + errors );
} else { } else {
parse("SWITCHA",sfinput); parse("SWITCHA",sfinput);
if(sfinput.length()>0){ if(sfinput.length()>0){
weightHasDerivatives=true; weightHasDerivatives=true;
sf1.set(sfinput,errors); sf1.set(sfinput,errors);
if( errors.length()!=0 ) error("problem reading SWITCHA keyword : " + errors );
sfinput.clear(); parse("SWITCHB",sfinput); sfinput.clear(); parse("SWITCHB",sfinput);
if(sfinput.length()==0) error("found SWITCHA keyword without SWITCHB"); if(sfinput.length()==0) error("found SWITCHA keyword without SWITCHB");
sf2.set(sfinput,errors); sf2.set(sfinput,errors);
if( errors.length()!=0 ) error("problem reading SWITCHB keyword : " + errors );
} else { } else {
error("missing definition of switching functions"); error("missing definition of switching functions");
} }
......
...@@ -100,6 +100,7 @@ PLUMED_MULTICOLVAR_INIT(ao) ...@@ -100,6 +100,7 @@ PLUMED_MULTICOLVAR_INIT(ao)
std::string sw, errors; parse("SWITCH",sw); std::string sw, errors; parse("SWITCH",sw);
if(sw.length()>0){ if(sw.length()>0){
switchingFunction.set(sw,errors); switchingFunction.set(sw,errors);
if( errors.length()!=0 ) error("problem reading SWITCH keyword : " + errors );
} else { } else {
double r_0=-1.0, d_0; int nn, mm; double r_0=-1.0, d_0; int nn, mm;
parse("NN",nn); parse("MM",mm); parse("NN",nn); parse("MM",mm);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment