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

Fixed formats

cc: @gtribello.
parent 8dd507af
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@ PathMSDBase::PathMSDBase(const ActionOptions&ao):
if(nat!=mypdb.getAtomNumbers().size()) error("frames should have the same number of atoms");
if(aaa.empty()) {
aaa=mypdb.getAtomNumbers();
log.printf(" found %d atoms in input \n",aaa.size());
log.printf(" found %z atoms in input \n",aaa.size());
log.printf(" with indices : ");
for(unsigned i=0; i<aaa.size(); ++i) {
if(i%25==0) log<<"\n";
......
......@@ -235,7 +235,7 @@ FitToTemplate::FitToTemplate(const ActionOptions&ao):
error("missing input file " + reference );
requestAtoms(pdb.getAtomNumbers());
log.printf(" found %d atoms in input \n",pdb.getAtomNumbers().size());
log.printf(" found %z atoms in input \n",pdb.getAtomNumbers().size());
log.printf(" with indices : ");
for(unsigned i=0; i<pdb.getAtomNumbers().size(); ++i) {
if(i%25==0) log<<"\n";
......
......@@ -109,7 +109,7 @@ Mapping::Mapping(const ActionOptions&ao):
if( req_args.size()>0 && atoms.size()>0 ) error("cannot mix atoms and arguments");
if( req_args.size()>0 ) requestArguments( req_args );
if( atoms.size()>0 ) {
log.printf(" found %d atoms in input \n",atoms.size());
log.printf(" found %z atoms in input \n",atoms.size());
log.printf(" with indices : ");
for(unsigned i=0; i<atoms.size(); ++i) {
if(i%25==0) log<<"\n";
......
......@@ -271,7 +271,7 @@ PCAVars::PCAVars(const ActionOptions& ao):
std::vector<AtomNumber> atoms; myref->getAtomRequests( atoms, false );
std::vector<std::string> args; myref->getArgumentRequests( args, false );
if( atoms.size()>0 ) {
log.printf(" found %d atoms in input \n",atoms.size());
log.printf(" found %z atoms in input \n",atoms.size());
log.printf(" with indices : ");
for(unsigned i=0; i<atoms.size(); ++i) {
if(i%25==0) log<<"\n";
......
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