- AbstractFileParser
- abstract base class for the parsers
- DaltonOutputParser
- Dalton 1.x or 2.0 files
- FCHKFileParser
- Gaussian Formatted Checkpoint files
- VOAVIEWFileParser
- VOAVIEW files
- MOLDENFileParser
- MOLDEN files
- XMolXYZFileParser
- XMol XYZ files
- HESFileParser
- cartesian hessian files of DALTON
- NumericDataFileParser
- files with numeric data only
- FittedSpectraFileParser
- fitted spectra files of VOAPlot 4.2+
- FCMINTFileParser
- cartesian hessian files of AcesII
- ParserFactory
- instantiating parsers
- SpectraMixtureFileParser
- spectra mixture files (ini-based)
- RamanROAExpSpectraFileParser
- Raman/ROA experimental files
- PyVib2MolFileParser
- PyVib2 molecule files
Author: | Maxim Fedorovsky |
---|
Abstract base class for all parsers.
This class defines a set of protected methods which are called in the constructor in the following sequence:
- _parse()
- initialize some variables (*)
- _validate()
- validate the read data (*)
Methods marked with an asterisk must be overridden in subclasses. Their default implementations raise a NotImplementedError.
Initializer of the class.
Parameter: | filename – file name or file object |
---|
Return the description of the parser.
Subclasses must override this static method. Otherwise a NotImplementedError is raised.
Parser for DALTON 1.x or 2.x output files.
Initializer of the class.
Parameters: |
|
---|
Parser for Formatted Checkpoint files of Gaussian.
Initializer of the class.
Parameters: |
|
---|
Parser for VOAVIEW files.
The wavelength of the incident light is always 532 nm.
Initializer of the class.
Parameter: | filename – file name or file object |
---|
Parser for MOLDEN files.
Currently extracts only the geometry and normal modes of a molecule.
Initializer of the class.
Parameter: | filename – file name or file object |
---|
Parser for XMol XYZ files.
Initializer of the class.
Parameter: | filename – file name or file object |
---|
Parser for cartesian hessian files of DALTON (*.hes).
Initializer of the class.
Parameter: | hesfile – file name |
---|
Parser for files containing only numbers.
Initializer of the class.
Parameters: |
|
---|
Parser for fitted spectra files of VOAPlot 4.2+.
This is not a subclass of AbstractFileParser.
The most important columns of fitted spectra files are:
nu raman roa degree_of_circularity
Initializer of the class.
Parameter: | filename – file name |
---|
Parser for cartesian hessian files of AcesII (FCMINT).
Initializer of the class.
Parameter: | filename – file name |
---|
Instantiating parser objects based on a file’s extension.
The following extensions (case insensitive) are recognized:
- ‘.out’ – Dalton 1.x and 2.0 output files
- ‘.fchk’ ‘.fch’ ‘.fck’ – Gaussian Formatted Checkpoint files
- ‘.dat’ ‘.voa’ – VOAVIEW files
- ‘.mol’ – MOLDEN files
- ‘.xyz’ – XMol XYZ files
The class exports the only static method create_parser().
Create an appropriate parser.
The extension of the file is analyzed and the approapriate parser object is instantiated and returned.
Parameter: | filename – file name |
---|
Parser for spectra mixture files (ini-based).
Example contents:
[Mixture]
molecules = ('path1', 'path2')
composition = (0.45, 0.55)
Initializer of the class.
Parameter: | filename – file name |
---|
Parser for Raman/ROA experimental files.
Example contents:
laser_power=200,total_exposure_time=60
nu1, raman1, roa1, degcirc1(optional)
.
.
.
nuM, ramanM, roaM, degcircM(optional)
Initializer of the class.
Parameter: | filename – file name |
---|
Parser for PyVib2 molecule files.
Initializer of the class.
Parameter: | filename – file name or file object |
---|