Changeset 59a745 for molecuilder/src/joiner.cpp
- Timestamp:
- Jul 23, 2009, 11:31:00 AM (16 years ago)
- Children:
- 307290
- Parents:
- 3b470f (diff), d40e32 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/joiner.cpp
r3b470f r59a745 34 34 ForceMatrix ShieldingFragments; 35 35 ForceMatrix ShieldingPASFragments; 36 EnergyMatrix Chi;37 EnergyMatrix ChiPAS;38 EnergyMatrix ChiFragments;39 EnergyMatrix ChiPASFragments;36 ForceMatrix Chi; 37 ForceMatrix ChiPAS; 38 ForceMatrix ChiFragments; 39 ForceMatrix ChiPASFragments; 40 40 KeySetsContainer KeySet; 41 41 stringstream prefix; … … 104 104 if(!Shielding.ParseIndices(argv[1])) return 1; 105 105 if(!ShieldingPAS.ParseIndices(argv[1])) return 1; 106 //if(!Chi.ParseIndices()) return 1;107 //if(!ChiPAS.ParseIndices()) return 1;106 if(!Chi.ParseIndices(argv[1])) return 1; 107 if(!ChiPAS.ParseIndices(argv[1])) return 1; 108 108 } 109 109 … … 167 167 if (!ShieldingPAS.SumSubForces(ShieldingPASFragments, KeySet, BondOrder, 1.)) return 1; 168 168 if (!ChiFragments.SumSubManyBodyTerms(Chi, KeySet, BondOrder)) return 1; 169 if (!Chi.SumSub Energy(ChiFragments, NULL, KeySet, BondOrder, 1.)) return 1;169 if (!Chi.SumSubForces(ChiFragments, KeySet, BondOrder, 1.)) return 1; 170 170 if (!ChiPASFragments.SumSubManyBodyTerms(ChiPAS, KeySet, BondOrder)) return 1; 171 if (!ChiPAS.SumSub Energy(ChiPASFragments, NULL,KeySet, BondOrder, 1.)) return 1;171 if (!ChiPAS.SumSubForces(ChiPASFragments, KeySet, BondOrder, 1.)) return 1; 172 172 } 173 173
Note:
See TracChangeset
for help on using the changeset viewer.