Skip to content
Snippets Groups Projects
Commit dc102ab0 authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Added error when using xdr/xtc files without xdrfile library

parent efe6dec3
No related branches found
No related tags found
No related merge requests found
......@@ -153,11 +153,7 @@ DumpAtoms::DumpAtoms(const ActionOptions&ao):
if(file.length()==0) error("name out output file was not specified");
type=Tools::extension(file);
log<<" file name "<<file<<"\n";
if(type=="gro" || type=="xyz"
#ifdef __PLUMED_HAS_XDRFILE
|| type=="xtc" || type=="trr"
#endif
) {
if(type=="gro" || type=="xyz" || type=="xtc" || type=="trr") {
log<<" file extension indicates a "<<type<<" file\n";
} else {
log<<" file extension not detected, assuming xyz\n";
......@@ -166,14 +162,14 @@ DumpAtoms::DumpAtoms(const ActionOptions&ao):
string ntype;
parse("TYPE",ntype);
if(ntype.length()>0) {
if(ntype!="xyz" && ntype!="gro"
#ifdef __PLUMED_HAS_XDRFILE
&& ntype!="xtc" && ntype!="trr"
#endif
if(ntype!="xyz" && ntype!="gro" && ntype!="xtc" && ntype!="trr"
) error("TYPE cannot be understood");
log<<" file type enforced to be "<<ntype<<"\n";
type=ntype;
}
#ifndef __PLUMED_HAS_XDRFILE
if(type=="xtc" || type=="trr") error("types xtc and trr require PLUMED to be linked with the xdrfile library. Please install it and recompile PLUMED.");
#endif
fmt_gro_pos="%8.3f";
fmt_gro_box="%12.7f";
......
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