NSCL DDAS 12.2-009
Support for XIA DDAS at FRIB
ModEvtFileParser.h
Go to the documentation of this file.
1
6#ifndef MODEVTFILEPARSER_H
7#define MODEVTFILEPARSER_H
8
9#include <iosfwd> // Forward declare iostream, fstream
10
12namespace DAQ {
14namespace DDAS {
15
16class Configuration;
17
46public:
48 ModEvtFileParser() = default;
58 void parse(std::istream &input, Configuration &config);
59};
60
63} // namespace DDAS
64} // namespace DAQ
65
66#endif // MODEVTFILEPARSER_H
Store the system configuration information needed by Readout.
Definition: Configuration.h:88
A parser for the modevtlen.txt file.
Definition: ModEvtFileParser.h:45
ModEvtFileParser()=default
Constructor.
void parse(std::istream &input, Configuration &config)
Parse and store the contents of the modevtlen.txt file in a configuration object.
Definition: ModEvtFileParser.cpp:18