DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
TPGPipeline.hpp
Go to the documentation of this file.
1
8
9#ifndef TPGLIBS_TPGPIPELINE_HPP_
10#define TPGLIBS_TPGPIPELINE_HPP_
11
14
17
18#include <nlohmann/json.hpp>
19#include <array>
20#include <vector>
21
22namespace tpglibs {
23
29template <typename T, typename U>
31 public:
33 using processor_t = T;
35 using signal_t = U;
36
37 virtual ~TPGPipeline() = default;
38
45 virtual void configure(const std::vector<std::pair<std::string, nlohmann::json>> configs, const std::vector<std::pair<dunedaq::trgdataformats::channel_t, int16_t>> channel_plane_numbers) {
46 std::shared_ptr<processor_t> prev_processor = nullptr;
47
48 for (int i = 0; i < 16; i++) {
49 m_channels.at(i) = channel_plane_numbers[i].first;
50 m_plane_numbers.at(i) = channel_plane_numbers[i].second;
51 }
52
53 for (const auto& name_config : configs) {
54 // Get the requested processor.
55 std::shared_ptr<processor_t> processor = m_factory->create_processor(name_config.first);
56
57 // Configure it.
58 processor->configure(name_config.second, m_plane_numbers.data());
59
60 // If it's the first one, make it the head.
61 if (!prev_processor) {
62 m_processor_head = processor;
63 prev_processor = processor;
64 continue;
65 }
66
67 // Otherwise, start linking the chain.
68 prev_processor->set_next_processor(processor);
69 prev_processor = processor;
70 }
71 }
72
76 virtual std::vector<dunedaq::trgdataformats::TriggerPrimitive> process(const signal_t& signal) {
77 signal_t tp_mask = save_state(m_processor_head->process(signal));
78
79 std::vector<dunedaq::trgdataformats::TriggerPrimitive> tps;
80 if (check_for_tps(tp_mask))
81 tps = generate_tps(tp_mask);
82
83 return tps;
84 }
85
87 virtual bool check_for_tps(const signal_t& tp_mask) = 0;
88
90 virtual signal_t save_state(const signal_t& processed_signal) = 0;
91
93 virtual std::vector<dunedaq::trgdataformats::TriggerPrimitive> generate_tps(const signal_t& tp_mask) = 0;
94
100 virtual std::vector<std::shared_ptr<AbstractProcessor<signal_t>>> get_all_processor_references() {
101 std::vector<std::shared_ptr<AbstractProcessor<signal_t>>> processor_references;
102 if (m_processor_head == nullptr) return processor_references;
103
104 auto current_processor = std::static_pointer_cast<AbstractProcessor<signal_t>>(m_processor_head);
105 while (current_processor != nullptr) {
106 processor_references.push_back(current_processor);
107 current_processor = current_processor->get_next_processor();
108 }
109 return processor_references;
110 }
111
113 virtual void set_sot_minima(const std::vector<uint16_t>& sot_minima) {
114 int idx = 0;
115 for (auto sot_minimum : sot_minima) {
116 m_sot_minima.at(idx++) = sot_minimum;
117 }
118 }
119
120 protected:
131 std::array<dunedaq::trgdataformats::channel_t, 16> m_channels;
133 std::array<int16_t, 16> m_plane_numbers;
135 std::array<uint16_t, 3> m_sot_minima;
137 std::shared_ptr<AbstractFactory<processor_t>> m_factory = AbstractFactory<processor_t>::get_instance();
139 std::shared_ptr<processor_t> m_processor_head;
140};
141
142} // namespace tpglibs
143
144#endif // TPGLIBS_TPGPIPELINE_HPP_
static std::shared_ptr< AbstractFactory< T > > get_instance()
Singleton get instance function.
Abstract class for the TPG pipeline.
virtual ~TPGPipeline()=default
std::array< int16_t, 16 > m_plane_numbers
Detector plane numbers for the 16 channels that are being processed.
std::array< dunedaq::trgdataformats::channel_t, 16 > m_channels
Detector channel numbers for the 16 channels that are being processed.
std::shared_ptr< processor_t > m_processor_head
Processor head to start from.
signal_t m_adc_peak
The ADC peak for channels that are considered active.
std::shared_ptr< AbstractFactory< processor_t > > m_factory
Processor factory singleton.
signal_t m_adc_integral_lo
The on-going ADC integral for channels that are considered active.
virtual void set_sot_minima(const std::vector< uint16_t > &sot_minima)
Set the samples over threshold minimum values.
signal_t m_samples_over_threshold
The samples over threshold for channels that are considered active.
T processor_t
Processor type to use. Generally AVX.
virtual bool check_for_tps(const signal_t &tp_mask)=0
Pure virtual function that will check if any TPs can be generated.
std::array< uint16_t, 3 > m_sot_minima
The samples over threshold minimum that a TP from plane i must have.
virtual void configure(const std::vector< std::pair< std::string, nlohmann::json > > configs, const std::vector< std::pair< dunedaq::trgdataformats::channel_t, int16_t > > channel_plane_numbers)
Configure the pieces to the pipeline.
virtual std::vector< std::shared_ptr< AbstractProcessor< signal_t > > > get_all_processor_references()
Return reference to all processors in this pipeline.
U signal_t
Signal type to use. Generally __m256i.
virtual std::vector< dunedaq::trgdataformats::TriggerPrimitive > process(const signal_t &signal)
Process a signal through the pipeline.
signal_t m_samples_to_peak
The number of samples from time_start to the ADC peak.
virtual std::vector< dunedaq::trgdataformats::TriggerPrimitive > generate_tps(const signal_t &tp_mask)=0
Pure virtual function that will generate TPs given a mask to draw from.
virtual signal_t save_state(const signal_t &processed_signal)=0
Pure virtual function that will save the state of the generation.