otsdaq  v2_01_00
RegisterSequencer.h
1 /*
2  * RegisterSequencer.h
3  *
4  * Created on: Jul 24, 2015
5  * Author: parilla
6  */
7 
8 #ifndef REGISTERSEQUENCER_H_
9 #define REGISTERSEQUENCER_H_
10 
11 #include "ConfigurationBase.h"
12 #include "ROCDACs.h"
13 
14 namespace ots {
15 
17 {
18 public:
19  RegisterSequencer (std::string staticConfigurationName);
20  virtual ~RegisterSequencer ();
21 
22  void init (void);
23 
24  //getter
25 
26 protected:
27 
28  enum{ComponentName,
29  RegisterName,
30  RegisterValue,
31  SequencerNumber,
32  State
33  };
34 
35 
36 
37 };
38 
39 }
40 
41 #endif /* REGISTERCONFIGURATION_H_ */