source: src/Parser/PcpParser_helper.hpp@ ff4fff9

CombiningParticlePotentialParsing
Last change on this file since ff4fff9 was 41a467, checked in by Frederik Heber <heber@…>, 13 years ago

LARGE: config class is now just a tiny container.

  • this was loooooobg overdue. Config.cpp contained remnants from parsing pcp files and much else. Also fragmentation depended on it. Since refactoring of MoleculeListClass and the fragmentation, we don't need it anymore.
  • helper functions ParseForParameters(), LoadMolecule() extracted into new module PcpParser_helper.
  • config class now just contains 4 variables that are generally required (especially IsAngstroem) and they should probably remain with the world.
  • removed some places where config.hpp was no unnecessarily included.
  • Moved ConfigFileBuffer.* over to subfolder src/Parser/ where it rather belongs (associated with PcpParser).
  • Property mode set to 100644
File size: 931 bytes
Line 
1/*
2 * PcpParser_helper.hpp
3 *
4 * Created on: Oct 27, 2011
5 * Author: heber
6 */
7
8#ifndef PCPPARSER_HELPER_HPP_
9#define PCPPARSER_HELPER_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include <string>
17
18class ConfigFileBuffer;
19class molecule;
20class periodentafel;
21
22int ParseForParameter(const int verbose, ifstream * const file, const char * const name, const int sequential, const int xth, const int yth, const int type, void * value, const int repetition, const int critical);
23int ParseForParameter(const int verbose, struct ConfigFileBuffer * const FileBuffer, const char * const name, const int sequential, const int xth, const int yth, const int type, void * value, const int repetition, const int critical);
24void LoadMolecule(molecule * const &mol, struct ConfigFileBuffer * const &FileBuffer, const periodentafel * const periode, const bool FastParsing);
25
26
27#endif /* PCPPARSER_HELPER_HPP_ */
Note: See TracBrowser for help on using the repository browser.