23 lines
385 B
C++
23 lines
385 B
C++
/*
|
|
* @file logicdata.h
|
|
*
|
|
* Created on: Jul 19, 2020
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
struct CompositeEvent {
|
|
int timestamp;
|
|
bool primaryTrigger;
|
|
bool secondaryTrigger;
|
|
bool isTDC;
|
|
bool sync;
|
|
bool coil;
|
|
bool injector;
|
|
};
|
|
|
|
void writeFile(const char * fileName, const std::vector<CompositeEvent>& events);
|