OPAL (Object Oriented Parallel Accelerator Library)  2.2.0
OPAL
SDDSReader.h
Go to the documentation of this file.
1 #ifndef __SDDSREADER_H__
2 #define __SDDSREADER_H__
3 
4 #include "SDDSParser.h"
5 
7 {
8  public:
9  SDDSReader(const std::string &fname):
10  SDDSParser(fname)
11  { }
12 
13  inline void parseFile()
14  {
15  run();
16  }
17 };
18 
19 #endif
Implements a parser and value extractor for Probe loss files.
Definition: SDDSReader.h:6
SDDSReader(const std::string &fname)
Definition: SDDSReader.h:9
void parseFile()
Definition: SDDSReader.h:13