NSCL DDAS  1.0
Support for XIA DDAS at the NSCL
 All Classes Namespaces Files Functions Variables Macros Pages
ModEvtFileParser.h
1 #ifndef MODEVTFILEPARSER_H
2 #define MODEVTFILEPARSER_H
3 
4 #include <iosfwd>
5 
6 namespace DAQ {
7 namespace DDAS {
8 
9 class Configuration;
10 
11 
33 {
34 public:
35  ModEvtFileParser() = default;
36 
37  void parse(std::istream& input, Configuration& config);
38 };
39 
40 
41 } // end DDAS namespace
42 } // end DAQ namespace
43 
44 #endif // MODEVTFILEPARSER_H
void parse(std::istream &input, Configuration &config)
Parse and store the contents of the modevtlen.txt file in a configuration object. ...
Definition: ModEvtFileParser.cpp:23
The Configuration class.
Definition: Configuration.h:50
Definition: functions.h:26
Definition: SystemBooter.cpp:16
A parser for the modevtlen.txt file.
Definition: ModEvtFileParser.h:32