Changeset f9cd68 for molecuilder/src


Ignore:
Timestamp:
Sep 6, 2008, 3:06:51 PM (17 years ago)
Author:
Frederik Heber <heber@…>
Children:
d473c3
Parents:
5887ed
Message:

BUGFIX: Moved case 'a' in ParseCommandLineOptions() to the config_present == empty option switch.

If atoms were added to an newly-created and empty configuration file, this would not work, as the config file was still empty and hence config_present != present, so far needed for case 'a'. Now, it is moved in the vicinity of case 'P', where it belongs to and if the first atom is added, config_present is set to present.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/builder.cpp

    r5887ed rf9cd68  
    901901              }
    902902              break;
     903            case 'a':
     904              ExitFlag = 1;
     905              SaveFlag = true;
     906              cout << Verbose(1) << "Adding new atom with element " << argv[argptr] << " at (" << argv[argptr+1] << "," << argv[argptr+2] << "," << argv[argptr+3] << "), ";
     907              first = new atom;
     908              first->type = periode->FindElement(atoi(argv[argptr]));
     909              if (first->type != NULL)
     910                cout << Verbose(2) << "found element " << first->type->name << endl;
     911              for (int i=NDIM;i--;)
     912                first->x.x[i] = atof(argv[argptr+1+i]);
     913              if (first->type != NULL) {
     914                mol->AddAtom(first);  // add to molecule
     915                if ((config_present == empty) && (mol->AtomCount != 0))
     916                  config_present = present;
     917              } else
     918                cerr << Verbose(1) << "Could not find the specified element." << endl;
     919              argptr+=4;
     920              break;
    903921            default:   // no match? Don't step on (this is done in next switch's default)
    904922              break;
     
    945963              mol->Translate((const Vector *)&x);
    946964              argptr+=3;
    947               break;
    948             case 'a':
    949               ExitFlag = 1;
    950               SaveFlag = true;
    951               cout << Verbose(1) << "Adding new atom with element " << argv[argptr] << " at (" << argv[argptr+1] << "," << argv[argptr+2] << "," << argv[argptr+3] << "), ";
    952               first = new atom;
    953               first->type = periode->FindElement(atoi(argv[argptr]));
    954               if (first->type != NULL)
    955                 cout << Verbose(2) << "found element " << first->type->name << endl;
    956               for (int i=NDIM;i--;)
    957                 first->x.x[i] = atof(argv[argptr+1+i]);
    958               if (first->type != NULL)
    959                 mol->AddAtom(first);  // add to molecule
    960               else
    961                 cerr << Verbose(1) << "Could not find the specified element." << endl;
    962               argptr+=4;
    963965              break;
    964966            case 's':
Note: See TracChangeset for help on using the changeset viewer.