17 #ifndef __O2_QC_FT0_UTILITIES_H__ 18 #define __O2_QC_FT0_UTILITIES_H__ 21 #include "DataFormatsFT0/Digit.h" 22 #include "DataFormatsFT0/ChannelData.h" 32 EventWithChannelData(
int pEventID, uint16_t pBC, uint32_t pOrbit,
double pTimestamp,
const std::vector<o2::ft0::ChannelData>& pChannels)
33 : eventID(pEventID), bc(pBC), orbit(pOrbit), timestampNS(pTimestamp), channels(pChannels) {}
36 uint16_t bc = o2::InteractionRecord::DummyBC;
37 uint32_t orbit = o2::InteractionRecord::DummyOrbit;
38 double timestampNS = 0;
39 std::vector<o2::ft0::ChannelData> channels;
41 int getEventID()
const {
return eventID; }
42 uint16_t getBC()
const {
return bc; }
43 uint32_t getOrbit()
const {
return orbit; }
44 double getTimestamp()
const {
return timestampNS; }
45 const std::vector<o2::ft0::ChannelData>& getChannels()
const {
return channels; }
Definition: BasicDigitQcTask.h:30
Definition: Utilities.h:29