Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/PcpParser.cpp

    r952f38 r2fe971  
    1414#include "element.hpp"
    1515#include "Helpers/Assert.hpp"
    16 #include "Helpers/Log.hpp"
     16#include "log.hpp"
    1717#include "molecule.hpp"
    1818#include "PcpParser.hpp"
    1919#include "periodentafel.hpp"
    2020#include "ThermoStatContainer.hpp"
    21 #include "Helpers/Verbose.hpp"
     21#include "verbose.hpp"
    2222#include "World.hpp"
    23 #include "LinearAlgebra/Matrix.hpp"
     23#include "Matrix.hpp"
    2424#include "Box.hpp"
    2525
     
    510510    const element * const elemental = World::getInstance().getPeriode()->FindElement(iter->first);
    511511    ZtoIndexMap.insert( pair<int,int> (iter->first, counter) );
    512     *file << "Ion_Type" << counter++ << "\t" << iter->second << "\t" << elemental->Z << "\t1.0\t3\t3\t" << fixed << setprecision(11) << showpoint << elemental->mass << "\t" << elemental->name << "\t" << elemental->symbol <<endl;
     512    *file << "Ion_Type" << counter++ << "\t" << iter->second << "\t" << elemental->Z << "\t1.0\t3\t3\t" << fixed << setprecision(11) << showpoint << elemental->mass << "\t" << elemental->getName() << "\t" << elemental->getSymbol() <<endl;
    513513  }
    514514}
Note: See TracChangeset for help on using the changeset viewer.