12#ifndef O2_TPC_RAWREADERCRU_H_
13#define O2_TPC_RAWREADERCRU_H_
82static constexpr int MaxNumberOfLinks = 24;
95 for (
auto&
data : mADCRaw) {
96 data.reserve(520 * 16);
115 if (numTB >= mADCRaw[mOutputStream].
size()) {
116 mNumTimeBins = mADCRaw[mOutputStream].size();
118 mNumTimeBins = numTB;
146 for (
auto&
data : mADCRaw) {
153 for (
auto&
data : mADCRaw) {
162 uint32_t mOutputStream{0};
163 uint32_t mNumTimeBins{0};
164 std::array<DataVector, 5> mADCRaw{};
181 void setPos(uint32_t pN, uint32_t fN, uint32_t fP, uint32_t hP)
203 output <<
"SYNC found at" << std::dec
204 <<
"; Filepos : " << sp.mFilePos
205 <<
"; Packet : " << sp.mPacketNum
206 <<
"; Frame : " << sp.mFrameNum
207 <<
"; Halfword : " << sp.mHalfWordPos
214 bool mSyncFound{
false};
215 uint32_t mPacketNum{0};
216 uint32_t mFrameNum{0};
217 uint32_t mFilePos{0};
218 uint32_t mHalfWordPos{0};
292 std::array<adc_t, 4> mData{};
294 adc_t mFrameHalfWords[5][8]{};
295 uint32_t mPrevHWpos{0};
296 uint32_t mSyncCheckRegister[5]{};
297 uint32_t mFilePos{0};
298 uint32_t mFrameNum{0};
299 uint32_t mPacketNum{0};
303 template <
typename T>
304 T bit(T s, T t)
const;
313 template <
typename T>
314 static constexpr T shiftBit(T
value, T from, T to)
316 return (
value & (1 << from)) >> from << to;
319class RawReaderCRUManager;
366 if (link.IsPresent) {
376 if (link.WasSeen && !link.IsPresent) {
380 if (!link.isComplete()) {
385 if (link.IsPresent && !link.HBEndSeen) {
397 if (link.IsPresent) {
436 const auto heartbeatOrbit = RDHUtils::getHeartBeatOrbit(rdh);
440 const auto detField = o2::raw::RDHUtils::getDetectorField(rdh);
441 const auto feeId = RDHUtils::getFEEID(rdh);
442 const auto endPoint = rdh_utils::getEndPoint(feeId);
443 auto link = rdh_utils::getLink(feeId);
444 if (link == 21 && detField == 0x02) {
447 const auto globalLink = link + endPoint * 12;
448 const auto cru = rdh_utils::getCRU(feeId);
450 return mLastEvent->
CRUInfoArray[cru].LinkInformation[globalLink];
462 size_t nComplete = 0;
463 for (
const auto&
event : mEventInformation) {
464 nComplete +=
event.IsComplete;
476 if (eventNumber >= mEventInformation.size()) {
479 return mEventInformation[eventNumber].IsComplete;
483 void sortEvents() { std::sort(mEventInformation.begin(), mEventInformation.end()); }
501 void setLinksSeen(
const CRU cru,
const std::bitset<MaxNumberOfLinks>& links);
504 void setCRUSeen(
const CRU cru,
const uint16_t reader = 0) { mCRUSeen[cru] = reader; }
515 mEventInformation.clear();
528 EventInfo* mLastEvent{
nullptr};
529 std::array<int16_t, CRU::MaxCRU> mCRUSeen{};
551 uint32_t numTimeBins = 0,
554 uint32_t debugLevel = 0,
556 const std::string_view outputFilePrefix =
"",
557 uint32_t readerNumber = 0)
558 : mDebugLevel(debugLevel),
560 mNumTimeBins(numTimeBins),
563 mReaderNumber(readerNumber),
568 mPacketDescriptorMaps(),
569 mInputFileName(inputFileName),
570 mOutputFilePrefix(outputFilePrefix)
572 if (mOutputFilePrefix.empty()) {
573 mOutputFilePrefix = mInputFileName.substr(0, mInputFileName.rfind(
'.'));
580 class Error :
public std::runtime_error
653 const auto& arr = mSyncPositions[link];
654 return arr[0].synched() && arr[1].synched() && arr[2].synched() && arr[3].synched() && arr[4].synched();
661 processFile(
const std::string_view inputFile, uint32_t timeBins = 0, uint32_t linkMask = 0, uint32_t
stream = 0, uint32_t debugLevel = 0, uint32_t
verbosity = 0,
const std::string_view outputFilePrefix =
"");
664 const std::map<PadPos, std::vector<uint16_t>>&
getADCMap()
const {
return mADCdata; }
686 void copyEvents(
const std::vector<uint32_t>& eventNumbers, std::string outputDirectory, std::ios_base::openmode
mode = std::ios_base::openmode(0));
706 if (!mFileHandle.is_open()) {
707 mFileHandle.open(mInputFileName, std::ios::binary);
708 if (!mFileHandle.good()) {
709 throw std::runtime_error(
"Unable to open or access file " + mInputFileName);
755 uint16_t memorySize = 7840, uint16_t packetSize = 8192,
756 uint32_t heartbeatOrbit = 0) : mHeaderOffset(headOff),
757 mFEEID(rdh_utils::
getFEEID(cru, endPoint, link)),
758 mMemorySize(memorySize),
759 mPacketSize(packetSize),
760 mHeartbeatOrbit(heartbeatOrbit)
791 size_t mHeaderOffset;
792 uint32_t mHeartbeatOrbit;
793 uint16_t mMemorySize;
794 uint16_t mPacketSize;
803 uint32_t mDebugLevel;
805 uint32_t mNumTimeBins;
808 uint32_t mEventNumber = 0;
809 uint32_t mReaderNumber = 0;
812 bool mDumpTextFiles =
false;
813 bool mFillADCdataMap =
true;
814 bool mForceCRU =
false;
815 bool mFileIsScanned =
false;
816 std::array<uint32_t, MaxNumberOfLinks> mPacketsPerLink;
817 std::bitset<MaxNumberOfLinks> mLinkPresent;
819 std::string mInputFileName;
820 std::string mOutputFilePrefix;
821 std::array<SyncArray, MaxNumberOfLinks> mSyncPositions{};
823 std::map<PadPos, std::vector<uint16_t>> mADCdata;
824 RawReaderCRUManager* mManager{
nullptr};
826 std::ifstream mFileHandle;
829 void collectGBTData(std::vector<std::byte>&
data);
832 void fillADCdataMap(
const ADCRawData& rawData);
834 ClassDefNV(RawReaderCRU, 0);
840inline T GBTFrame::bit(T s, T t)
const
842 const T dataWord = s >> 5;
843 return shiftBit(mData[dataWord], s, t);
848 const auto offset = mPrevHWpos ^ 4;
850 for (
int s = 0; s < 5; s++) {
851 for (
int h = 0;
h < 4;
h++) {
854 if (mFrameHalfWords[s][hPos] == 0x15) {
855 mSyncCheckRegister[s] = (mSyncCheckRegister[s] << 1) | 1;
857 }
else if (mFrameHalfWords[s][hPos] == 0xA) {
858 mSyncCheckRegister[s] = (mSyncCheckRegister[s] << 1);
861 mSyncCheckRegister[s] = 0;
867 if (mSyncCheckRegister[s] == 0xCCCCF0F0 or mSyncCheckRegister[s] == 0x4CCCF0F0 or mSyncCheckRegister[s] == 0x0CCCF0F0) {
868 syncArray[s].setPos(mPacketNum, mFrameNum, mFilePos,
h);
876 const auto offset = mPrevHWpos ^ 4;
878 for (
int s = 0; s < 5; s++) {
879 for (
int h = 0;
h < 4;
h++) {
882 if (mFrameHalfWords[s][hPos] == 0x15) {
883 mSyncCheckRegister[s] = (mSyncCheckRegister[s] << 1) | 1;
885 }
else if (mFrameHalfWords[s][hPos] == 0xA) {
886 mSyncCheckRegister[s] = (mSyncCheckRegister[s] << 1);
889 mSyncCheckRegister[s] = 0;
895 if (mSyncCheckRegister[s] == 0xCCCCF0F0 or mSyncCheckRegister[s] == 0x4CCCF0F0 or mSyncCheckRegister[s] == 0x0CCCF0F0) {
896 mSyncPos[s].setPos(mPacketNum, mFrameNum, mFilePos,
h);
898 std::cout << s <<
" : " << mSyncPos[s];
910 constexpr adc_t P[5][4] = {{19, 18, 17, 16}, {39, 38, 37, 36}, {63, 62, 61, 60}, {83, 82, 81, 80}, {107, 106, 105, 104}};
912 for (
int i = 0;
i < 5;
i++) {
913 for (
int j = 0;
j < 4;
j++) {
914 mFrameHalfWords[
i][
j + mPrevHWpos] = bit(
P[
i][
j],
adc_t(4)) |
929 for (
int s = 0; s < 5; s++) {
930 if (!mSyncPos[s].synched()) {
936 const uint32_t
pos = mSyncPos[s].getHalfWordPosition();
937 const uint32_t
v0 = (mFrameHalfWords[s][(
pos + 2 + mPrevHWpos) & 7] << 5) | mFrameHalfWords[s][(
pos + 1 + mPrevHWpos) & 7];
938 const uint32_t
v1 = (mFrameHalfWords[s][(
pos + 4 + mPrevHWpos) & 7] << 5) | mFrameHalfWords[s][(
pos + 3 + mPrevHWpos) & 7];
948 assert(
sizeof(mData) ==
data.size_bytes());
949 memcpy(mData.data(),
data.data(),
data.size_bytes());
973 uint32_t numTimeBins = 0,
976 uint32_t debugLevel = 0,
978 const std::string_view outputFilePrefix =
"")
981 mRawReadersCRU.emplace_back(std::make_unique<RawReaderCRU>(inputFileName, numTimeBins, 0,
stream, debugLevel,
verbosity, outputFilePrefix, mRawReadersCRU.size()));
982 mRawReadersCRU.back()->setManager(
this);
983 return *mRawReadersCRU.back().get();
986 void setupReaders(
const std::string_view inputFileNames,
987 uint32_t numTimeBins = 1000,
988 uint32_t debugLevel = 0,
990 const std::string_view outputFilePrefix =
"");
1021 mIsInitialized =
false;
1027 for (
auto& reader : mRawReadersCRU) {
1028 reader->setEventNumber(eventNumber);
1050 mDataType = dataType;
1051 mRawDataType = rawType;
1052 mDetectDataType =
false;
1059 void copyEvents(
const std::vector<uint32_t> eventNumbers, std::string_view outputDirectory, std::ios_base::openmode
mode = std::ios_base::openmode(0));
1062 static void copyEvents(
const std::string_view inputFileNames,
const std::vector<uint32_t> eventNumbers, std::string_view outputDirectory, std::ios_base::openmode
mode = std::ios_base::openmode(0));
1068 static void writeGBTDataPerLink(
const std::string_view inputFileNames, std::string_view outputDirectory,
int maxEvents = -1);
1083 std::vector<std::unique_ptr<RawReaderCRU>> mRawReadersCRU{};
1084 RawReaderCRUEventSync mEventSync{};
1085 uint32_t mDebugLevel{0};
1088 bool mDetectDataType{
true};
1089 bool mIsInitialized{
false};
Class for time synchronization of RawReader instances.
Pad and row inside a ROC.
helper to store the ADC raw data
ADCRawData()
default ctor. Resesrve 520 time bins per stream
void streamTo(std::ostream &output) const
write data to ostream
std::vector< uint32_t > DataVector
const DataVector & getDataVector(int stream) const
get the data vector for a specific stream
friend std::ostream & operator<<(std::ostream &output, const ADCRawData &rawData)
overloading output stream operator
uint32_t getNumTimebins() const
number of time bin for selected stream
void add(int stream, uint32_t v0, uint32_t v1)
add a stream
void setNumTimebins(uint32_t numTB)
void setOutputStream(uint32_t outStream)
select the stream for which data should be processed
helper to encapsulate a GBTFrame
void setFrameNumber(uint32_t frameNumber)
set packet number
void readFromMemory(gsl::span< const std::byte > data)
read from memory
void updateSyncCheck(SyncArray &syncArray)
update the sync check
void getFrameHalfWords()
extract the 4 5b halfwords for the 5 data streams from one GBT frame
friend std::istream & operator>>(std::istream &input, GBTFrame &frame)
friend std::ostream & operator<<(std::ostream &output, const GBTFrame &frame)
overloading output stream operator to output the GBT Frame and the halfwords
void setSyncPositions(const SyncArray &syncArray)
set the sync positions
void getAdcValues(ADCRawData &rawData)
decode ADC values
void setPacketNumber(uint32_t packetNumber)
set packet number
bool syncFound(int stream)
void streamFrom(std::istream &input)
read from istream
void streamTo(std::ostream &output) const
write data to ostream
const SyncArray & getSyncArray() const
get the syncronisation array
GBTFrame()=default
default constructor
const EventInfo & getEventInfo(size_t eventNumber) const
information of specific event
LinkInfo & getLinkInfo(const RDH &rdh, DataType dataType)
get link information for a specific event and cru
std::vector< LinkInfo > LinkInfoArray_t
std::vector< CRUInfo > CRUInfoArray_t
const EventInfoVector & getEventInfoVector() const
all event information
void reset()
reset all information
bool isEventComplete(size_t eventNumber) const
check if eent is complete
static constexpr size_t ExpectedNumberOfPacketsPerHBFrame
expected number of packets in one HB frame per link for HB scaling mode
size_t getNumberOfEvents() const
get number of all events
void sortEvents()
sort events ascending in heartbeatOrbit number
const auto & getCRUSeen() const
return CRU seen information
void setCRUSeen(const CRU cru, const uint16_t reader=0)
set a cru as seen
RawReaderCRUEventSync()
default ctor
void analyse(RAWDataType rawDataType=RAWDataType::GBT)
analyse events and mark complete events
uint32_t getReaderNumber(uint32_t cru)
get the reader associated to the CRU
size_t getNumberOfEvents(CRU) const
void setLinksSeen(const CRU cru, const std::bitset< MaxNumberOfLinks > &links)
set links that were seen for a CRU
size_t getNumberOfCompleteEvents() const
get number of complete events
const LinkInfoArray_t & getLinkInfoArrayForEvent(size_t eventNumber, int cru) const
get array with all link informaiton for a specific event number and cru
std::vector< EventInfo > EventInfoVector
static constexpr size_t ExpectedPayloadSize
expected payload size in case of triggered mode (4000 GBT Frames of 16byte)
friend std::ostream & operator<<(std::ostream &output, const RawReaderCRUEventSync &eventSync)
overloading output stream operator
void streamTo(std::ostream &output) const
write data to ostream
EventInfo & createEvent(const uint32_t heartbeatOrbit, DataType dataType)
create a new event or return the one with the given HB orbit
void writeGBTDataPerLink(std::string_view outputDirectory, int maxEvents=-1)
copy single events from raw input files to another file
LinkZSCallback getLinkZSCallback()
get LinkZSCallback
RawReaderCRU & getLastReader()
return last reader
DataType getDataType() const
get data type
o2::tpc::raw_processing_helpers::ADCCallback LinkZSCallback
void init()
initialize all readers
std::function< Int_t(const PadROCPos &, const CRU &, const gsl::span< const uint32_t >)> ADCDataCallback
std::function< void()> EndReaderCallback
const RawReaderCRU & getLastReader() const
return last reader
void processEvent(uint32_t eventNumber, EndReaderCallback endReader=nullptr)
process event calling mADCDataCallback to process values
auto getNumberOfReaders() const
return number of configured raw readers
void setupReaders(const std::string_view inputFileNames, uint32_t numTimeBins=1000, uint32_t debugLevel=0, uint32_t verbosity=0, const std::string_view outputFilePrefix="")
RawReaderCRUManager()=default
constructor
void resetReaders()
reset readers
const RawReaderCRUEventSync & getEventSync() const
get the event sync
size_t getNumberOfEvents() const
get number of all events
void setDataType(DataType dataType, RAWDataType rawType)
set data type
size_t getNumberOfCompleteEvents() const
get number of complete events
void copyEvents(const std::vector< uint32_t > eventNumbers, std::string_view outputDirectory, std::ios_base::openmode mode=std::ios_base::openmode(0))
copy single events to another file
RawReaderCRU & createReader(const std::string_view inputFileName, uint32_t numTimeBins=0, uint32_t link=0, uint32_t stream=0, uint32_t debugLevel=0, uint32_t verbosity=0, const std::string_view outputFilePrefix="")
create a new raw reader
void setDebugLevel(uint32_t debugLevel)
set debug level
void resetEventSync()
reset event synchronisation info
bool isEventComplete(size_t eventNumber) const
check if event is complete
auto & getReaders()
return vector of readers
void setLinkZSCallback(LinkZSCallback function)
set a callback function for decoded LinkZS data
void setADCDataCallback(ADCDataCallback function)
set a callback function
const auto & getReaders() const
return vector of readers
void setEventNumber(uint32_t eventNumber)
set event number to all sub-readers
Error(const std::string &what_arg)
helper class to store packet positions inside the file
FEEIDType getLinkID() const
uint32_t getPacketSize() const
FEEIDType getGlobalLinkID() const
FEEIDType getCRUID() const
uint32_t getPayloadSize() const
constexpr uint32_t getHeaderSize() const
PacketDescriptor(size_t headOff, uint32_t cru, uint32_t link, uint32_t endPoint, uint16_t memorySize=7840, uint16_t packetSize=8192, uint32_t heartbeatOrbit=0)
FEEIDType getEndPoint() const
friend std::ostream & operator<<(std::ostream &output, const PacketDescriptor &packetDescriptor)
rdh_utils::FEEIDType FEEIDType
size_t getHeaderOffset() const
uint32_t getHeartBeatOrbit() const
FEEIDType getFEEID() const
size_t getPayloadOffset() const
void streamTo(std::ostream &output) const
write data to ostream
RawReaderCRU(const std::string_view inputFileName, uint32_t numTimeBins=0, uint32_t link=0, uint32_t stream=0, uint32_t debugLevel=0, uint32_t verbosity=0, const std::string_view outputFilePrefix="", uint32_t readerNumber=0)
void setOutputFilePrefix(std::string_view prefix)
set output file prefix
int processDataFile()
process all data for the selected link reading single 8k packet from file
const PacketDescriptorMapArray & getPacketDescriptorMaps() const
get packet descriptor map array
void forceCRU(int cru)
for the CRU id
std::vector< PacketDescriptor > PacketDescriptorMap
void findSyncPositions()
find sync positions for all links
static void processFile(const std::string_view inputFile, uint32_t timeBins=0, uint32_t linkMask=0, uint32_t stream=0, uint32_t debugLevel=0, uint32_t verbosity=0, const std::string_view outputFilePrefix="")
bool checkLinkPresent(uint32_t link)
status bits of present links
void setManager(RawReaderCRUManager *manager)
set the event sync
void processLinks(const uint32_t linkMask=0)
process links
bool getFillADCdataMap() const
get filling of ADC data map
void processDataMemory()
Collect data to memory and process data.
void setVerbosity(uint32_t verbosity=1)
set verbosity level
void runADCDataCallback(const ADCRawData &rawData)
run a data filling callback function
void setEventNumber(uint32_t eventNumber=0)
set event number
std::ifstream & getFileHandle()
file handling
void setDebugLevel(uint32_t debugLevel=1)
set debug level
void copyEvents(const std::vector< uint32_t > &eventNumbers, std::string outputDirectory, std::ios_base::openmode mode=std::ios_base::openmode(0))
copy single events to another file
RawReaderCRUManager * getManager()
get manager
int processMemory(const std::vector< std::byte > &data, ADCRawData &rawData)
void clearMap()
clear the ADC data map
size_t getNumberOfEvents() const
get number of events
bool syncFoundForLink(const int link) const
std::array< PacketDescriptorMap, MaxNumberOfLinks > PacketDescriptorMapArray
void processLinkZS()
process data in case of Link based zero suppression
void setLink(uint32_t link)
void setReaderNumber(uint32_t readerNumber)
set the reader number in the manager
const std::string & getOutputFilePrefix() const
output file prefix
const std::map< PadPos, std::vector< uint16_t > > & getADCMap() const
return the ADC data map
uint32_t getEventNumber() const
get event number
int processPacket(GBTFrame &gFrame, uint32_t startPos, uint32_t size, ADCRawData &rawData)
process single packet
const CRU & getCRU() const
return the CRU
void setFillADCdataMap(bool fill)
set filling of ADC data map
void writeGBTDataPerLink(std::string_view outputDirectory, int maxEvents=-1)
write GBT data into separate files per link
helper encoding of the sync position
uint32_t getFrameNumber() const
void setPos(uint32_t pN, uint32_t fN, uint32_t fP, uint32_t hP)
uint32_t getHalfWordPosition() const
return half word position
friend std::ostream & operator<<(std::ostream &output, const SyncPosition &sp)
overloading output stream operator to output the GBT Frame and the halfwords
SyncPosition()=default
default constructor
bool synched() const
return if sync was found
uint32_t getPacketNumber() const
GLsizei const GLfloat * value
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
RuntimeErrorRef runtime_error(const char *)
std::function< bool(int cru, int rowInSector, int padInRow, int timeBin, float adcValue)> ADCCallback
@ Triggered
triggered data
@ Continuous
continuous data taking
@ HBScaling
heart beat sclaing mode
std::array< SyncPosition, 5 > SyncArray
@ GBT
GBT encoded raw data.
@ LinkZS
Link based zero suppression.
DebugLevel
debug level bits
@ EventInfo
dump event synchronisation information
@ GBTFrames
dump all GBT frames
@ SyncPositions
dump sync positions
@ ADCValues
dump extracted ADC values
@ FLP
single files from FLP as 8k pages with RAWDataHeader
@ EPN
STF builder data merged on EPN.
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
Defining DataPointCompositeObject explicitly as copiable.
summary information of on CRU
bool isComplete(RAWDataType rawDataType=RAWDataType::GBT) const
size_t totalPayloadSize() const
LinkInfoArray_t LinkInformation
helper to store event information
bool IsComplete
if event is complete
bool operator<(const EventInfo &other) const
EventInfo(uint32_t heartbeatOrbit)
EventInfo(const EventInfo &)=default
CRUInfoArray_t CRUInfoArray
Link information for each cru.
bool hasHearbeatOrbit(uint32_t heartbeatOrbit) const
check if heartbeatOrbit contributes to the event
std::vector< uint32_t > HeartbeatOrbits
vector of heartbeat orbits contributing to the event
uint32_t getFirstOrbit() const
helper to store link information in an event
size_t getNumberOfPackets() const
number of packets in the link
bool IsPresent
if the link is present in the current event
bool isComplete() const
if link data is complete
bool isFirstPacket() const
if packet is the first one
bool HBEndSeen
if HB end frame was seen
size_t PayloadSize
total payload size of the link in the present event
std::vector< size_t > PacketPositions
all packet positions of this link in an event
bool WasSeen
if the link was seen in any event
VectorOfTObjectPtrs other