Orion
high-rate readout
detector.hpp
Go to the documentation of this file.
1 
5 #pragma once
6 
7 #include "itk/fec/detector.hpp"
8 
9 
10 namespace itk::itkpix1 {
11 
12 // using ItkDetector = itk::Detector<FrontEnd>;
13 
14 class Detector : public itk::Detector<FrontEnd> {
15 public:
16  // using FrontEnd = ItkDetector::FrontEnd;
17 
18  struct Factory : public itk::Factory<Detector> {
19  virtual Detector* operator()() = 0;
20  };
21 
22 }; // Detector
23 
24 } // itk::itkpix
Interface definition for Detector. Detector class contains list of front-ends and allows to send broa...
Definition: detector.hpp:20
Templated implementation of Factory class.
Definition: factory.hpp:35
Definition: detector.hpp:14
Definition: detector.hpp:18