Changeset 97c751
- Timestamp:
- Feb 9, 2009, 11:17:28 PM (17 years ago)
- Children:
- f23d7d
- Parents:
- dafe43
- git-author:
- Frederik Heber <heber@…> (02/09/09 23:16:19)
- git-committer:
- Frederik Heber <heber@…> (02/09/09 23:17:28)
- Location:
- molecuilder/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/analyzer.cpp
rdafe43 r97c751 177 177 output << endl; 178 178 179 output << endl << "Total Chis" << endl << "===============" << endl << Chi.Header[ Hessian.MatrixCounter] << endl;179 output << endl << "Total Chis" << endl << "===============" << endl << Chi.Header[Chi.MatrixCounter] << endl; 180 180 for(int j=0;j<Chi.RowCounter[Chi.MatrixCounter];j++) { 181 for(int k=0;k<Chi.ColumnCounter [Chi.MatrixCounter];k++)181 for(int k=0;k<Chi.ColumnCounter;k++) 182 182 output << scientific << Chi.Matrix[ Chi.MatrixCounter ][j][k] << "\t"; 183 183 output << endl; … … 187 187 output << endl << "Total Chis PAS" << endl << "===============" << endl << ChiPAS.Header[ChiPAS.MatrixCounter] << endl; 188 188 for(int j=0;j<ChiPAS.RowCounter[ChiPAS.MatrixCounter];j++) { 189 for(int k=0;k<ChiPAS.ColumnCounter [ChiPAS.MatrixCounter];k++)189 for(int k=0;k<ChiPAS.ColumnCounter;k++) 190 190 output << scientific << ChiPAS.Matrix[ ChiPAS.MatrixCounter ][j][k] << "\t"; 191 191 output << endl; … … 265 265 for(int j=0;j<ChiPAS.RowCounter[ChiPAS.MatrixCounter];j++) { 266 266 output << j << "\t"; 267 for(int k=0;k<ChiPAS.ColumnCounter [ChiPAS.MatrixCounter];k++)267 for(int k=0;k<ChiPAS.ColumnCounter;k++) 268 268 output << scientific << ChiPAS.Matrix[ ChiPAS.MatrixCounter ][j][k] << "\t"; //*(((k>1) && (k<6))? 1.e6 : 1.) << "\t"; 269 269 output << endl; -
molecuilder/src/joiner.cpp
rdafe43 r97c751 85 85 if(!Shielding.ParseIndices(argv[1])) return 1; 86 86 if(!ShieldingPAS.ParseIndices(argv[1])) return 1; 87 if(!Chi.ParseIndices( argv[1])) return 1;88 if(!ChiPAS.ParseIndices( argv[1])) return 1;87 if(!Chi.ParseIndices()) return 1; 88 if(!ChiPAS.ParseIndices()) return 1; 89 89 } 90 90 … … 137 137 if (!ShieldingPAS.SumSubForces(ShieldingPASFragments, KeySet, BondOrder, 1.)) return 1; 138 138 if (!ChiFragments.SumSubManyBodyTerms(Chi, KeySet, BondOrder)) return 1; 139 if (!Chi.SumSub Forces(ChiFragments, KeySet, BondOrder, 1.)) return 1;139 if (!Chi.SumSubEnergy(ChiFragments, NULL, KeySet, BondOrder, 1.)) return 1; 140 140 if (!ChiPASFragments.SumSubManyBodyTerms(ChiPAS, KeySet, BondOrder)) return 1; 141 if (!ChiPAS.SumSub Forces(ChiPASFragments,KeySet, BondOrder, 1.)) return 1;141 if (!ChiPAS.SumSubEnergy(ChiPASFragments, NULL,KeySet, BondOrder, 1.)) return 1; 142 142 } 143 143
Note:
See TracChangeset
for help on using the changeset viewer.