Changeset d473c3
- Timestamp:
- Sep 6, 2008, 3:08:32 PM (17 years ago)
- Children:
- b21e1f
- Parents:
- f9cd68
- Location:
- molecuilder/src
- Files:
-
- 3 edited
-
config.cpp (modified) (3 diffs)
-
molecules.cpp (modified) (1 diff)
-
molecules.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/config.cpp
rf9cd68 rd473c3 1072 1072 bool config::SaveMPQC(ofstream *output, molecule *mol) const 1073 1073 { 1074 int ElementNo ;1074 int ElementNo = 0; 1075 1075 int AtomNo; 1076 1076 atom *Walker = NULL; 1077 element *runner ;1078 Vector center;1077 element *runner = mol->elemente->start; 1078 Vector *center = NULL; 1079 1079 1080 1080 *output << "% Created by MoleCuilder" << endl; … … 1086 1086 *output << "\t\t\tunit = " << (IsAngstroem ? "angstrom" : "bohr" ) << endl; 1087 1087 *output << "\t\t\t{ atoms geometry } = {" << endl; 1088 mol->DetermineCenter(center);1088 center = mol->DetermineCenterOfAll(output); 1089 1089 // output of atoms 1090 ElementNo = 0;1091 runner = mol->elemente->start;1092 1090 while (runner->next != mol->elemente->end) { // go through every element 1093 1091 runner = runner->next; … … 1100 1098 if (Walker->type == runner) { // if this atom fits to element 1101 1099 AtomNo++; 1102 *output << "\t\t\t\t" << Walker->type->symbol << " [ " << Walker->x.x[0]-center .x[0] << "\t" << Walker->x.x[1]-center.x[1] << "\t" << Walker->x.x[2]-center.x[2] << " ]" << endl;1100 *output << "\t\t\t\t" << Walker->type->symbol << " [ " << Walker->x.x[0]-center->x[0] << "\t" << Walker->x.x[1]-center->x[1] << "\t" << Walker->x.x[2]-center->x[2] << " ]" << endl; 1103 1101 } 1104 1102 } 1105 1103 } 1106 1104 } 1105 delete(center); 1107 1106 *output << "\t\t\t}" << endl; 1108 1107 *output << "\t\t)" << endl; -
molecuilder/src/molecules.cpp
rf9cd68 rd473c3 720 720 } 721 721 }; 722 723 /** Returns vector pointing to center of gravity. 724 * \param *out output stream for debugging 725 * \return pointer to center of gravity vector 726 */ 727 Vector * molecule::DetermineCenterOfAll(ofstream *out) 728 { 729 atom *ptr = start->next; // start at first in list 730 Vector *a = new Vector(); 731 Vector tmp; 732 double Num = 0; 733 734 a->Zero(); 735 736 if (ptr != end) { //list not empty? 737 while (ptr->next != end) { // continue with second if present 738 ptr = ptr->next; 739 Num += 1.; 740 tmp.CopyVector(&ptr->x); 741 a->AddVector(&tmp); 742 } 743 a->Scale(-1./Num); // divide through total mass (and sign for direction) 744 } 745 //cout << Verbose(1) << "Resulting center of gravity: "; 746 //a->Output(out); 747 //cout << endl; 748 return a; 749 }; 722 750 723 751 /** Returns vector pointing to center of gravity. -
molecuilder/src/molecules.hpp
rf9cd68 rd473c3 253 253 void DetermineCenter(Vector ¢er); 254 254 Vector * DetermineCenterOfGravity(ofstream *out); 255 Vector * DetermineCenterOfAll(ofstream *out); 255 256 void SetBoxDimension(Vector *dim); 256 257 double * ReturnFullMatrixforSymmetric(double *cell_size);
Note:
See TracChangeset
for help on using the changeset viewer.
