Added a couple of comments.

This commit is contained in:
Harry Moffat 2006-07-03 19:41:57 +00:00
parent 201f6cceb5
commit 228ebc78b1

View file

@ -1167,15 +1167,20 @@ next:
rdata.number = i;
rdata.rxn_number = i;
/*
* Read the rate coefficient data from the XML file. Trigger an
* exception for negative A unless specifically authorized.
*/
getRateCoefficient(r.child("rateCoeff"), kin, rdata, negA);
/*
* Check to see that the elements balance in the reaction.
* Throw an error if they don't
*/
if (validate_rxn)
checkRxnElementBalance(kin, rdata);
*/
if (validate_rxn) {
checkRxnElementBalance(kin, rdata);
}
/*
* Ok we have read everything in about the reaction. Add it
* to the kinetics object by calling the Kinetics member function,