NSCL DDAS  12.1-001
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>
10 
12 namespace DAQ {
14  namespace DDAS {
15 
16  class Configuration;
17 
46  {
47  public:
49  ModEvtFileParser() = default;
59  void parse(std::istream& input, Configuration& config);
60  };
61 
64  } // end DDAS namespace
65 } // end DAQ namespace
66 
67 #endif // MODEVTFILEPARSER_H
68 
Store the system configuration information needed by Readout.
Definition: Configuration.h:81
A parser for the modevtlen.txt file.
Definition: ModEvtFileParser.h:46
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:19