source: molecuilder/src/element.cpp@ 3db67e

Last change on this file since 3db67e 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
RevLine 
[a0bcf1]1/** \file element.cpp
2 *
3 * Function implementations for the class element.
4 *
5 */
6
[4dca8e]7#include <iomanip>
8#include <fstream>
9
10#include "element.hpp"
[a0bcf1]11
12/************************************* Functions for class element **********************************/
13
14/** Constructor of class element.
15 */
[51483b]16element::element() {
[a048fa]17 Z = -1;
18 No = -1;
19 previous = NULL;
20 next = NULL;
21 sort = NULL;
[51483b]22};
[a0bcf1]23
24/** Destructor of class element.
25 */
26element::~element() {};
27
28/** Prints element data to \a *out.
29 * \param *out outstream
30 */
[543ce4]31bool element::Output(ofstream * const out) const
[a0bcf1]32{
[a048fa]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;
[a0bcf1]39};
40
41/** Prints element data to \a *out.
42 * \param *out outstream
[a048fa]43 * \param No cardinal number of element
[a0bcf1]44 * \param NoOfAtoms total number of atom of this element type
45 */
[543ce4]46bool element::Checkout(ofstream * const out, const int Number, const int NoOfAtoms) const
[a0bcf1]47{
[a048fa]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;
[a0bcf1]53};
Note: See TracBrowser for help on using the repository browser.