DataMapViewer.h
Go to the documentation of this file.
1 // DataMapViewer.h
2 
3 // David Adams
4 // October 2017
5 //
6 // Interface for tools that provide a view of DataMap data, i.e.
7 // of the result from another tool.
8 
9 #ifndef DataMapViewer_H
10 #define DataMapViewer_H
11 
13 
15 
16 public:
17 
18  virtual ~DataMapViewer() =default;
19 
20  // Tool process method.
21  // acd - Input ADC channel data
22  virtual DataMap view(const DataMap& dm) const =0;
23 
24 };
25 
26 #endif
virtual DataMap view(const DataMap &dm) const =0
virtual ~DataMapViewer()=default