source: molecuilder/src/Parser/TremoloParser.hpp@ 2704e2

Last change on this file since 2704e2 was 2704e2, checked in by Saskia Metzler <metzler@…>, 15 years ago

WIP tremolo parser

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 * TremoloParser.hpp
3 *
4 * Created on: Mar 2, 2010
5 * Author: metzler
6 */
7
8#ifndef TREMOLOPARSER_HPP_
9#define TREMOLOPARSER_HPP_
10
11#include <string>
12#include "FormatParser.hpp"
13
14class TremoloParser:public FormatParser
15{
16public:
17 TremoloParser();
18 ~TremoloParser();
19 void load(std::istream* file);
20 void save(std::ostream* file);
21
22private:
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;
67};
68
69#endif /* TREMOLOPARSER_HPP_ */
Note: See TracBrowser for help on using the repository browser.