source: molecuilder/src/element.cpp@ 794482

Last change on this file since 794482 was 543ce4, checked in by Frederik Heber <heber@…>, 16 years ago

Huge change from ofstream * (const) out --> Log().

  • first shift was done via regular expressions
  • then via error messages from the code
  • note that class atom, class element and class molecule kept in parts their output stream, was they print to file.
  • make check runs fine
  • MISSING: Verbosity is not fixed for everything (i.e. if no endl; is present and next has Verbose(0) ...)

Signed-off-by: Frederik Heber <heber@…>

  • Property mode set to 100755
File size: 1.5 KB
Line 
1/** \file element.cpp
2 *
3 * Function implementations for the class element.
4 *
5 */
6
7#include <iomanip>
8#include <fstream>
9
10#include "element.hpp"
11
12/************************************* Functions for class element **********************************/
13
14/** Constructor of class element.
15 */
16element::element() {
17 Z = -1;
18 No = -1;
19 previous = NULL;
20 next = NULL;
21 sort = NULL;
22};
23
24/** Destructor of class element.
25 */
26element::~element() {};
27
28/** Prints element data to \a *out.
29 * \param *out outstream
30 */
31bool element::Output(ofstream * const out) const
32{
33 if (out != NULL) {
34 *out << name << "\t" << symbol << "\t" << period << "\t" << group << "\t" << block << "\t" << Z << "\t" << mass << "\t" << CovalentRadius << "\t" << VanDerWaalsRadius << endl;
35 //*out << Z << "\t" << fixed << setprecision(11) << showpoint << mass << "g/mol\t" << name << "\t" << symbol << "\t" << endl;
36 return true;
37 } else
38 return false;
39};
40
41/** Prints element data to \a *out.
42 * \param *out outstream
43 * \param No cardinal number of element
44 * \param NoOfAtoms total number of atom of this element type
45 */
46bool element::Checkout(ofstream * const out, const int Number, const int NoOfAtoms) const
47{
48 if (out != NULL) {
49 *out << "Ion_Type" << Number << "\t" << NoOfAtoms << "\t" << Z << "\t1.0\t3\t3\t" << fixed << setprecision(11) << showpoint << mass << "\t" << name << "\t" << symbol <<endl;
50 return true;
51 } else
52 return false;
53};
Note: See TracBrowser for help on using the repository browser.