Ignore:
Timestamp:
Mar 30, 2010, 1:22:20 PM (15 years ago)
Author:
Saskia Metzler <metzler@…>
Branches:
Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
Children:
4415da
Parents:
cb2146
Message:

WIP tremolo parser

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parser/TremoloParser.hpp

    rcb2146 r9131f3  
    99#define TREMOLOPARSER_HPP_
    1010
     11#include <string>
    1112#include "FormatParser.hpp"
    12 #include "World.hpp"
    1313
    14 class TremoloParser : public FormatParser {
     14class TremoloParser:public FormatParser
     15{
    1516public:
    16   void load(char* fileName);
    17   void save(char* fileName);
     17  TremoloParser();
     18  ~TremoloParser();
     19  void load(std::istream* file);
     20  void save(std::ostream* file);
    1821
    1922private:
    20   map<std::string, std::string> moreData;
     23  void readAtomDataLine(string line);
     24  void parseAtomDataKeysLine(string line, int offset);
     25
     26  /**
     27   * Known keys for the ATOMDATA line.
     28   */
     29  enum StringValue {
     30    x,
     31    u,
     32    F,
     33    stress,
     34    Id,
     35    neighbors,
     36    imprData,
     37    GroupMeasureTypeNo,
     38    Type,
     39    extType,
     40    name,
     41    resName,
     42    chainID,
     43    resSeq,
     44    occupancy,
     45    tempFactor,
     46    segID,
     47    Charge,
     48    charge,
     49    GrpTypeNo
     50  };
     51
     52  /**
     53   * Map to associate the known keys with numbers.
     54   */
     55  std::map<std::string, StringValue> knownKeys;
     56
     57  /**
     58   * Fields used in the tremolo file.
     59   */
     60  std::vector<std::string> usedFields;
     61
     62  /**
     63   * Data which is currently not stored in atoms but was provided by the input
     64   * file.
     65   */
     66  std::map<std::string, std::string> moreData;
    2167};
    2268
Note: See TracChangeset for help on using the changeset viewer.