Changeset b3eb8e


Ignore:
Timestamp:
Jul 24, 2008, 1:58:40 PM (17 years ago)
Author:
Frederik Heber <heber@…>
Children:
db3ea3
Parents:
0f7a85
Message:

adding atom: element is now first, not last parameter and output message is clearer

This is to remedy the problem of forgetting the element's Z value, the output message should give clear indication.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/builder.cpp

    r0f7a85 rb3eb8e  
    727727static int ParseCommandLineOptions(int argc, char **argv, molecule *&mol, periodentafel *&periode, config& configuration, char *&ConfigFileName, char *&PathToDatabases)
    728728{
    729   element *finder;
    730729  vector x,y,z,n;  // coordinates for absolute point in cell volume
    731730  double *factor; // unit factor if desired
     
    884883            case 'a':
    885884              ExitFlag = 1;
    886               cout << Verbose(1) << "Adding new atom." << endl;
     885              cout << Verbose(1) << "Adding new atom with element " << argv[argptr] << " at (" << argv[argptr+1] << "," << argv[argptr+2] << "," << argv[argptr+3] << "), ";
    887886              first = new atom;
     887              first->type = periode->FindElement(atoi(argv[argptr]));
     888              if (first->type != NULL)
     889                cout << Verbose(2) << "found element " << first->type->name << endl;
    888890              for (int i=NDIM;i--;)
    889891                first->x.x[i] = atof(argv[argptr+1+i]);
    890               finder = periode->start;
    891               while (finder != periode->end) {
    892                 finder = finder->next;
    893                 if (strncmp(finder->symbol,argv[argptr+1],3) == 0) {
    894                   first->type = finder;
    895                   break;
    896                 }
    897               }
    898               mol->AddAtom(first);  // add to molecule
     892              if (first->type != NULL)
     893                mol->AddAtom(first);  // add to molecule
     894              else
     895                cerr << Verbose(1) << "Could not find the specified element." << endl;
    899896              argptr+=4;
    900897              break;
Note: See TracChangeset for help on using the changeset viewer.