Changeset 75793b2 for molecuilder/src/element.cpp
- Timestamp:
- Jun 7, 2008, 1:20:30 PM (17 years ago)
- Children:
- 42bdb2, a89a22
- Parents:
- a1c448
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/element.cpp
ra1c448 r75793b2 41 41 * \param NoOfAtoms total number of atom of this element type 42 42 */ 43 bool element::Checkout(ofstream *out, const int N o, const int NoOfAtoms) const43 bool element::Checkout(ofstream *out, const int Number, const int NoOfAtoms) const 44 44 { 45 45 if (out != NULL) { 46 *out << "Ion_Type" << N o<< "\t" << NoOfAtoms << "\t" << Z << "\t1.0\t3\t3\t" << fixed << setprecision(11) << showpoint << mass << "\t" << name << "\t" << symbol <<endl;46 *out << "Ion_Type" << Number << "\t" << NoOfAtoms << "\t" << Z << "\t1.0\t3\t3\t" << fixed << setprecision(11) << showpoint << mass << "\t" << name << "\t" << symbol <<endl; 47 47 return true; 48 48 } else
Note:
See TracChangeset
for help on using the changeset viewer.