Scope
DaqChunkResonance.cpp
1 #include "stdafx.h"
2 
3 #include "DaqChunkResonance.h"
4 
5 namespace scope {
6 
7 DaqChunkResonance::DaqChunkResonance(const uint32_t& _perchannel, const uint32_t& _nchannels, const uint32_t& _area)
8  : DaqChunk(_perchannel, _nchannels, _area)
9  , resSync(_perchannel, 0)
10  , lastsyncsig(_nchannels, std::begin(resSync)) {
11 
12  for (auto& s : lastsyncsig )
13  s = std::begin(resSync);
14 }
15 
16 }
DaqChunkResonance(const uint32_t &_perchannel, const uint32_t &_nchannels, const uint32_t &_area)
STL namespace.
A DaqChunk contains data from all channels sequentially.
Definition: DaqChunk.h:9
This is the include file for standard system include files, or project specific include files that ar...
std::vector< iteratorSync > lastsyncsig
Iterators to positions of the last used sync signal point.
std::vector< bool > resSync
The vector with booleans for the synchronization signal for the resonance scanner.