Changeset f9cd68 for molecuilder/src
- Timestamp:
- Sep 6, 2008, 3:06:51 PM (17 years ago)
- Children:
- d473c3
- Parents:
- 5887ed
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/builder.cpp
r5887ed rf9cd68 901 901 } 902 902 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; 903 921 default: // no match? Don't step on (this is done in next switch's default) 904 922 break; … … 945 963 mol->Translate((const Vector *)&x); 946 964 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 molecule960 else961 cerr << Verbose(1) << "Could not find the specified element." << endl;962 argptr+=4;963 965 break; 964 966 case 's':
Note:
See TracChangeset
for help on using the changeset viewer.