Project
Loading...
Searching...
No Matches
RawReaderCRU.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
12#ifndef O2_TPC_RAWREADERCRU_H_
13#define O2_TPC_RAWREADERCRU_H_
14
18
19// read a file into memory
20#include <iostream> // std::cout
21#include <fstream> // std::std::ifstream
22#include <cstdint>
23#include <iomanip>
24#include <vector>
25#include <map>
26#include <array>
27#include <bitset>
28#include <cmath>
29#include <string_view>
30#include <algorithm>
31#include <functional>
32#include <gsl/span>
34
35#include "TPCBase/CRU.h"
37#include "Headers/RDHAny.h"
38#include "TPCBase/PadPos.h"
39#include "TPCBase/PadROCPos.h"
40#include "TPCBase/RDHUtils.h"
42
43//#include "git_info.hpp"
44namespace o2
45{
46namespace tpc
47{
48namespace rawreader
49{
50
53
55enum DebugLevel : uint8_t {
59 RDHDump = 3,
60 EventInfo = 5
61};
62
64enum class DataType : uint8_t {
65 Continuous = 1,
66 HBScaling = 2,
67 Triggered = 3,
68};
69
71enum class ReaderType : uint8_t {
72 FLP = 0,
73 EPN = 1,
74};
75
77enum class RAWDataType : uint8_t {
78 GBT = 0,
79 LinkZS = 1,
80};
81
82static constexpr int MaxNumberOfLinks = 24;
83
84// ===========================================================================
88{
89 public:
90 using DataVector = std::vector<uint32_t>;
91
94 {
95 for (auto& data : mADCRaw) {
96 data.reserve(520 * 16);
97 }
98 }
99
101 void add(int stream, uint32_t v0, uint32_t v1)
102 {
103 mADCRaw[stream].emplace_back(v0);
104 mADCRaw[stream].emplace_back(v1);
105 };
106
108 void setOutputStream(uint32_t outStream) { mOutputStream = outStream; };
109
113 void setNumTimebins(uint32_t numTB)
114 {
115 if (numTB >= mADCRaw[mOutputStream].size()) {
116 mNumTimeBins = mADCRaw[mOutputStream].size();
117 } else {
118 mNumTimeBins = numTB;
119 }
120 };
121
123 uint32_t getNumTimebins() const { return mADCRaw[mOutputStream].size(); };
124
126 void streamTo(std::ostream& output) const;
127
129 friend std::ostream& operator<<(std::ostream& output, const ADCRawData& rawData)
130 {
131 rawData.streamTo(output);
132 return output;
133 }
134
136 const DataVector& getDataVector(int stream) const { return mADCRaw[stream]; }
137
139 friend std::ostream& operator<<(std::ostream& output, const ADCRawData& rawData);
140
142 void reset()
143 {
144 mOutputStream = 0;
145 mNumTimeBins = 0;
146 for (auto& data : mADCRaw) {
147 data.clear();
148 }
149 }
150
151 bool hasData() const
152 {
153 for (auto& data : mADCRaw) {
154 if (data.size()) {
155 return true;
156 }
157 }
158 return false;
159 }
160
161 private:
162 uint32_t mOutputStream{0}; // variable to set the output stream for the << operator
163 uint32_t mNumTimeBins{0}; // variable to set the number of timebins for the << operator
164 std::array<DataVector, 5> mADCRaw{}; // array of 5 vectors to hold the raw ADC data for each stream
165}; // class ADCRawData
166
167//==============================================================================
171{
172 public:
174 SyncPosition() = default;
175
181 void setPos(uint32_t pN, uint32_t fN, uint32_t fP, uint32_t hP)
182 {
183 mSyncFound = true;
184 mPacketNum = pN;
185 mFrameNum = fN;
186 mFilePos = fP;
187 mHalfWordPos = hP;
188 };
189
191 uint32_t getHalfWordPosition() const { return mHalfWordPos; };
192
193 uint32_t getFrameNumber() const { return mFrameNum; }
194
195 uint32_t getPacketNumber() const { return mPacketNum; }
196
198 bool synched() const { return mSyncFound; };
199
201 friend std::ostream& operator<<(std::ostream& output, const SyncPosition& sp)
202 {
203 output << "SYNC found at" << std::dec
204 << "; Filepos : " << sp.mFilePos
205 << "; Packet : " << sp.mPacketNum
206 << "; Frame : " << sp.mFrameNum
207 << "; Halfword : " << sp.mHalfWordPos
208 << '\n';
209
210 return output;
211 };
212
213 private:
214 bool mSyncFound{false};
215 uint32_t mPacketNum{0};
216 uint32_t mFrameNum{0};
217 uint32_t mFilePos{0};
218 uint32_t mHalfWordPos{0};
219}; // class SyncPosition
220
221using SyncArray = std::array<SyncPosition, 5>;
222
223// ===========================================================================
227{
228 public:
229 using adc_t = uint32_t;
230
232 GBTFrame() = default;
233
235 void setSyncPositions(const SyncArray& syncArray) { mSyncPos = syncArray; }
236
239 bool syncFound(int stream) { return mSyncPos[stream].synched(); };
240
242 const SyncArray& getSyncArray() const { return mSyncPos; }
243
245 void updateSyncCheck(SyncArray& syncArray);
246
248 void updateSyncCheck(bool verbose = false);
249
251 void getFrameHalfWords();
252
257
259 void getAdcValues(ADCRawData& rawData);
260
262 void readFromMemory(gsl::span<const std::byte> data);
263
265 void streamFrom(std::istream& input);
266
268 void streamTo(std::ostream& output) const;
269
272 friend std::istream& operator>>(std::istream& input, GBTFrame& frame)
273 {
274 frame.streamFrom(input);
275 return input;
276 }
277
279 friend std::ostream& operator<<(std::ostream& output, const GBTFrame& frame)
280 {
281 frame.streamTo(output);
282 return output;
283 }
284
286 void setPacketNumber(uint32_t packetNumber) { mPacketNum = packetNumber; }
287
289 void setFrameNumber(uint32_t frameNumber) { mFrameNum = frameNumber; }
290
291 private:
292 std::array<adc_t, 4> mData{};
293 SyncArray mSyncPos{};
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};
300
303 template <typename T>
304 T bit(T s, T t) const;
305
306 // /// get value of specific bit
307 // static constexpr uint32_t getBit(uint32_t value, uint32_t bit)
308 //{
309 // return (value & (1 << bit)) >> bit;
310 //}
311
313 template <typename T>
314 static constexpr T shiftBit(T value, T from, T to)
315 {
316 return (value & (1 << from)) >> from << to;
317 }
318}; // class GBTFrame
319class RawReaderCRUManager;
320
327{
328 public:
329 static constexpr size_t ExpectedNumberOfPacketsPerHBFrame{8};
330 static constexpr size_t ExpectedPayloadSize{64000};
331
334
335 // ---------------------------------------------------------------------------
338 struct LinkInfo {
339 size_t PayloadSize{};
340 bool HBEndSeen{false};
341 bool IsPresent{false};
342 bool WasSeen{false};
343 std::vector<size_t> PacketPositions{};
344
346 size_t getNumberOfPackets() const { return PacketPositions.size(); }
347
350
352 bool isFirstPacket() const { return (PacketPositions.size() == 0); }
353 };
354 // using LinkInfoArray_t = std::array<LinkInfo, 24>;
355 using LinkInfoArray_t = std::vector<LinkInfo>;
356
357 // ---------------------------------------------------------------------------
360 struct CRUInfo {
361 CRUInfo() : LinkInformation(MaxNumberOfLinks) {}
362
363 bool isPresent() const
364 {
365 for (const auto& link : LinkInformation) {
366 if (link.IsPresent) {
367 return true;
368 }
369 }
370 return false;
371 }
372
373 bool isComplete(RAWDataType rawDataType = RAWDataType::GBT) const
374 {
375 for (const auto& link : LinkInformation) {
376 if (link.WasSeen && !link.IsPresent) {
377 return false;
378 }
379 if (rawDataType == RAWDataType::GBT) {
380 if (!link.isComplete()) {
381 return false;
382 }
383 }
384 if (rawDataType == RAWDataType::LinkZS) {
385 if (link.IsPresent && !link.HBEndSeen) {
386 return false;
387 }
388 }
389 }
390 return true;
391 }
392
393 size_t totalPayloadSize() const
394 {
395 size_t totalPayloadSize = 0;
396 for (const auto& link : LinkInformation) {
397 if (link.IsPresent) {
398 totalPayloadSize += link.PayloadSize;
399 }
400 }
401 return totalPayloadSize;
402 }
403
405 };
406 // using CRUInfoArray_t = std::array<CRUInfo, CRU::MaxCRU>;
407 using CRUInfoArray_t = std::vector<CRUInfo>;
408
409 // ---------------------------------------------------------------------------
412 struct EventInfo {
413 EventInfo() : CRUInfoArray(CRU::MaxCRU) {}
414 EventInfo(uint32_t heartbeatOrbit) : CRUInfoArray(CRU::MaxCRU) { HeartbeatOrbits.emplace_back(heartbeatOrbit); }
415 EventInfo(const EventInfo&) = default;
416
417 bool operator<(const EventInfo& other) const { return HeartbeatOrbits.back() < other.HeartbeatOrbits[0]; }
418
420 bool hasHearbeatOrbit(uint32_t heartbeatOrbit) const { return std::find(HeartbeatOrbits.begin(), HeartbeatOrbits.end(), heartbeatOrbit) != HeartbeatOrbits.end(); }
421
422 uint32_t getFirstOrbit() const { return HeartbeatOrbits.size() ? *std::min_element(HeartbeatOrbits.begin(), HeartbeatOrbits.end()) : 0; }
423
424 std::vector<uint32_t> HeartbeatOrbits{};
426 bool IsComplete{false};
427 };
428
429 // ---------------------------------------------------------------------------
430 using EventInfoVector = std::vector<EventInfo>;
431
433 LinkInfo& getLinkInfo(const RDH& rdh, DataType dataType)
434 {
435 if (!mLastEvent) {
436 const auto heartbeatOrbit = RDHUtils::getHeartBeatOrbit(rdh);
437 createEvent(heartbeatOrbit, dataType);
438 }
439
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) {
445 link = 0;
446 }
447 const auto globalLink = link + endPoint * 12;
448 const auto cru = rdh_utils::getCRU(feeId);
449
450 return mLastEvent->CRUInfoArray[cru].LinkInformation[globalLink];
451 }
452
454 const LinkInfoArray_t& getLinkInfoArrayForEvent(size_t eventNumber, int cru) const { return mEventInformation[eventNumber].CRUInfoArray[cru].LinkInformation; }
455
457 size_t getNumberOfEvents() const { return mEventInformation.size(); }
458
461 {
462 size_t nComplete = 0;
463 for (const auto& event : mEventInformation) {
464 nComplete += event.IsComplete;
465 }
466 return nComplete;
467 }
468
471 size_t getNumberOfEvents(CRU /*cru*/) const { return mEventInformation.size(); }
472
474 bool isEventComplete(size_t eventNumber) const
475 {
476 if (eventNumber >= mEventInformation.size()) {
477 return false;
478 }
479 return mEventInformation[eventNumber].IsComplete;
480 }
481
483 void sortEvents() { std::sort(mEventInformation.begin(), mEventInformation.end()); }
484
486 EventInfo& createEvent(const uint32_t heartbeatOrbit, DataType dataType);
487
489 void analyse(RAWDataType rawDataType = RAWDataType::GBT);
490
492 const EventInfoVector& getEventInfoVector() const { return mEventInformation; }
493
495 const EventInfo& getEventInfo(size_t eventNumber) const { return mEventInformation[eventNumber]; }
496
498 void streamTo(std::ostream& output) const;
499
501 void setLinksSeen(const CRU cru, const std::bitset<MaxNumberOfLinks>& links);
502
504 void setCRUSeen(const CRU cru, const uint16_t reader = 0) { mCRUSeen[cru] = reader; }
505
507 const auto& getCRUSeen() const { return mCRUSeen; }
508
510 uint32_t getReaderNumber(uint32_t cru) { return mCRUSeen[cru]; }
511
513 void reset()
514 {
515 mEventInformation.clear();
516 mCRUSeen.fill(-1);
517 }
518
520 friend std::ostream& operator<<(std::ostream& output, const RawReaderCRUEventSync& eventSync)
521 {
522 eventSync.streamTo(output);
523 return output;
524 }
525
526 private:
527 EventInfoVector mEventInformation{};
528 EventInfo* mLastEvent{nullptr};
529 std::array<int16_t, CRU::MaxCRU> mCRUSeen{};
530
531 ClassDefNV(RawReaderCRUEventSync, 0); // event synchronisation for raw reader instances
532}; // class RawReaderCRUEventSync
533
534// =============================================================================
535// =============================================================================
536// =============================================================================
542{
543 public:
544 class PacketDescriptor;
545 using PacketDescriptorMap = std::vector<PacketDescriptor>;
546 using PacketDescriptorMapArray = std::array<PacketDescriptorMap, MaxNumberOfLinks>;
547
550 RawReaderCRU(const std::string_view inputFileName,
551 uint32_t numTimeBins = 0,
552 uint32_t link = 0,
553 uint32_t stream = 0,
554 uint32_t debugLevel = 0,
555 uint32_t verbosity = 0,
556 const std::string_view outputFilePrefix = "",
557 uint32_t readerNumber = 0)
558 : mDebugLevel(debugLevel),
559 mVerbosity(verbosity),
560 mNumTimeBins(numTimeBins),
561 mLink(link),
562 mStream(stream),
563 mReaderNumber(readerNumber),
564 mCRU(),
565 mFileSize(-1),
566 mPacketsPerLink(),
567 mLinkPresent(),
568 mPacketDescriptorMaps(),
569 mInputFileName(inputFileName),
570 mOutputFilePrefix(outputFilePrefix)
571 {
572 if (mOutputFilePrefix.empty()) {
573 mOutputFilePrefix = mInputFileName.substr(0, mInputFileName.rfind('.'));
574 }
575 }
576
580 class Error : public std::runtime_error
581 {
582 public:
583 Error(const std::string& what_arg) : std::runtime_error("Decoding error:" + what_arg) {}
584 };
585
592 int scanFile();
593
598 void setLink(uint32_t link) { mLink = link; }
599
601 void setVerbosity(uint32_t verbosity = 1) { mVerbosity = verbosity; }
602
604 void setDebugLevel(uint32_t debugLevel = 1) { mDebugLevel = debugLevel; }
605
607 void setEventNumber(uint32_t eventNumber = 0) { mEventNumber = eventNumber; }
608
610 void setReaderNumber(uint32_t readerNumber) { mReaderNumber = readerNumber; }
611
613 void setFillADCdataMap(bool fill) { mFillADCdataMap = fill; }
614
616 bool getFillADCdataMap() const { return mFillADCdataMap; }
617
619 uint32_t getEventNumber() const { return mEventNumber; }
620
622 size_t getNumberOfEvents() const;
623
625 bool checkLinkPresent(uint32_t link) { return mLinkPresent[link]; }
626
628 int processDataFile();
629
631 void processLinkZS();
632
634 void processDataMemory();
635
637 int processPacket(GBTFrame& gFrame, uint32_t startPos, uint32_t size, ADCRawData& rawData);
638
641 int processMemory(const std::vector<std::byte>& data, ADCRawData& rawData);
642
644 void processLinks(const uint32_t linkMask = 0);
645
647 void findSyncPositions();
648
651 bool syncFoundForLink(const int link) const
652 {
653 const auto& arr = mSyncPositions[link];
654 return arr[0].synched() && arr[1].synched() && arr[2].synched() && arr[3].synched() && arr[4].synched();
655 }
656
660 static void
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 = "");
662
664 const std::map<PadPos, std::vector<uint16_t>>& getADCMap() const { return mADCdata; }
665
667 void clearMap() { mADCdata.clear(); }
668
670 const CRU& getCRU() const { return mCRU; }
671
673 void forceCRU(int cru)
674 {
675 mCRU = cru;
676 mForceCRU = true;
677 }
678
680 void setManager(RawReaderCRUManager* manager) { mManager = manager; }
681
683 RawReaderCRUManager* getManager() { return mManager; }
684
686 void copyEvents(const std::vector<uint32_t>& eventNumbers, std::string outputDirectory, std::ios_base::openmode mode = std::ios_base::openmode(0));
687
689 void writeGBTDataPerLink(std::string_view outputDirectory, int maxEvents = -1);
690
692 void runADCDataCallback(const ADCRawData& rawData);
693
695 void setOutputFilePrefix(std::string_view prefix) { mOutputFilePrefix = prefix; }
696
698 const std::string& getOutputFilePrefix() const { return mOutputFilePrefix; }
699
701 const PacketDescriptorMapArray& getPacketDescriptorMaps() const { return mPacketDescriptorMaps; }
702
704 std::ifstream& getFileHandle()
705 {
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);
710 }
711 }
712
713 return mFileHandle;
714 }
715
716 //===========================================================================
717 //===| Nested helper classes |===============================================
718 //
719
720 public:
721 // ===========================================================================
750 {
751 public:
753
754 PacketDescriptor(size_t headOff, uint32_t cru, uint32_t link, uint32_t endPoint,
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)
761 {
762 }
763
764 constexpr uint32_t getHeaderSize() const
765 {
766 return sizeof(RDH);
767 }
768
769 uint32_t getHeartBeatOrbit() const { return mHeartbeatOrbit; }
770 size_t getHeaderOffset() const { return mHeaderOffset; }
771 size_t getPayloadOffset() const { return mHeaderOffset + getHeaderSize(); }
772 uint32_t getPayloadSize() const { return mMemorySize - getHeaderSize(); }
773 uint32_t getPacketSize() const { return mPacketSize; }
774
775 FEEIDType getFEEID() const { return mFEEID; }
776 FEEIDType getCRUID() const { return rdh_utils::getCRU(mFEEID); }
777 FEEIDType getLinkID() const { return rdh_utils::getLink(mFEEID); }
778 FEEIDType getGlobalLinkID() const { return getLinkID() + getEndPoint() * 12; }
779 FEEIDType getEndPoint() const { return rdh_utils::getEndPoint(mFEEID); }
780
782 void streamTo(std::ostream& output) const;
783
784 friend std::ostream& operator<<(std::ostream& output, const PacketDescriptor& packetDescriptor)
785 {
786 packetDescriptor.streamTo(output);
787 return output;
788 }
789
790 private:
791 size_t mHeaderOffset;
792 uint32_t mHeartbeatOrbit;
793 uint16_t mMemorySize;
794 uint16_t mPacketSize;
795 FEEIDType mFEEID;
796 };
797
798 // ===========================================================================
799 // ===| data members |========================================================
800 //
801
802 private:
803 uint32_t mDebugLevel;
804 uint32_t mVerbosity;
805 uint32_t mNumTimeBins;
806 uint32_t mLink;
807 uint32_t mStream;
808 uint32_t mEventNumber = 0;
809 uint32_t mReaderNumber = 0;
810 CRU mCRU;
811 size_t mFileSize;
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;
818 PacketDescriptorMapArray mPacketDescriptorMaps;
819 std::string mInputFileName;
820 std::string mOutputFilePrefix;
821 std::array<SyncArray, MaxNumberOfLinks> mSyncPositions{};
822 // not so nice but simplest way to store the ADC data
823 std::map<PadPos, std::vector<uint16_t>> mADCdata;
824 RawReaderCRUManager* mManager{nullptr};
825
826 std::ifstream mFileHandle;
827
829 void collectGBTData(std::vector<std::byte>& data);
830
832 void fillADCdataMap(const ADCRawData& rawData);
833
834 ClassDefNV(RawReaderCRU, 0); // raw reader class
835
836}; // class RawReaderCRU
837
838// ===| inline definitions |====================================================
839template <typename T>
840inline T GBTFrame::bit(T s, T t) const
841{
842 const T dataWord = s >> 5;
843 return shiftBit(mData[dataWord], s, t);
844};
845
847{
848 const auto offset = mPrevHWpos ^ 4;
849
850 for (int s = 0; s < 5; s++) {
851 for (int h = 0; h < 4; h++) {
852 const auto hPos = h + offset; // set position of last filled HW
853 // shift in a 1 if the halfword is 0x15
854 if (mFrameHalfWords[s][hPos] == 0x15) {
855 mSyncCheckRegister[s] = (mSyncCheckRegister[s] << 1) | 1;
856 // shift in a 0 if the halfword is 0xA
857 } else if (mFrameHalfWords[s][hPos] == 0xA) {
858 mSyncCheckRegister[s] = (mSyncCheckRegister[s] << 1);
859 // otherwise reset the register to 0
860 } else {
861 mSyncCheckRegister[s] = 0;
862 }
863 // std::cout << " SReg : " << s << " : " << std::hex << mSyncCheckRegister[s] << std::endl;
864 // check the register content for the SYNC pattern
865 // Patterh is : 1100.1100.1100.1100.1111.0000.1111.0000 = 0xCCCCF0F0
866 // alternative Pattern for first corrupted SYNC word : 0100.1100.1100.1100.1111.0000.1111.0000 = 4CCC.F0F0
867 if (mSyncCheckRegister[s] == 0xCCCCF0F0 or mSyncCheckRegister[s] == 0x4CCCF0F0 or mSyncCheckRegister[s] == 0x0CCCF0F0) {
868 syncArray[s].setPos(mPacketNum, mFrameNum, mFilePos, h);
869 };
870 }
871 };
872}
873
874inline void GBTFrame::updateSyncCheck(bool verbose)
875{
876 const auto offset = mPrevHWpos ^ 4;
877
878 for (int s = 0; s < 5; s++) {
879 for (int h = 0; h < 4; h++) {
880 const auto hPos = h + offset; // set position of last filled HW
881 // shift in a 1 if the halfword is 0x15
882 if (mFrameHalfWords[s][hPos] == 0x15) {
883 mSyncCheckRegister[s] = (mSyncCheckRegister[s] << 1) | 1;
884 // shift in a 0 if the halfword is 0xA
885 } else if (mFrameHalfWords[s][hPos] == 0xA) {
886 mSyncCheckRegister[s] = (mSyncCheckRegister[s] << 1);
887 // otherwise reset the register to 0
888 } else {
889 mSyncCheckRegister[s] = 0;
890 }
891 // std::cout << " SReg : " << s << " : " << std::hex << mSyncCheckRegister[s] << std::endl;
892 // check the register content for the SYNC pattern
893 // Patterh is : 1100.1100.1100.1100.1111.0000.1111.0000 = 0xCCCCF0F0
894 // alternative Pattern for first corrupted SYNC word : 0100.1100.1100.1100.1111.0000.1111.0000 = 4CCC.F0F0
895 if (mSyncCheckRegister[s] == 0xCCCCF0F0 or mSyncCheckRegister[s] == 0x4CCCF0F0 or mSyncCheckRegister[s] == 0x0CCCF0F0) {
896 mSyncPos[s].setPos(mPacketNum, mFrameNum, mFilePos, h);
897 if (verbose) {
898 std::cout << s << " : " << mSyncPos[s];
899 }
900 }
901 }
902 }
903}
904
909{
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}};
911 // i = Stream, j = Halfword
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)) |
915 bit(adc_t(P[i][j] - 4), adc_t(3)) |
916 bit(adc_t(P[i][j] - 8), adc_t(2)) |
917 bit(adc_t(P[i][j] - 12), adc_t(1)) |
918 bit(adc_t(P[i][j] - 16), adc_t(0));
919 // std::cout << " S : " << i << " H : " << j << " : " << std::hex << res << std::endl;
920 };
921 }
922 mPrevHWpos ^= 4; // toggle position of previous HW position
923}
924
927{
928 // loop over all the 5 data streams
929 for (int s = 0; s < 5; s++) {
930 if (!mSyncPos[s].synched()) {
931 continue;
932 }
933
934 // assemble the 2 ADC words from 4 half-words. Which halfwords are
935 // used depends on the position of the SYNC pattern.
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];
939
940 // add the two ADC values for the current processed stream
941 rawData.add(s, v0, v1);
942 };
943 // std::cout << std::endl;
944}
945
946inline void GBTFrame::readFromMemory(gsl::span<const std::byte> data)
947{
948 assert(sizeof(mData) == data.size_bytes());
949 memcpy(mData.data(), data.data(), data.size_bytes());
950}
951
952// =============================================================================
953// =============================================================================
954// =============================================================================
962{
963 public:
964 using ADCDataCallback = std::function<Int_t(const PadROCPos&, const CRU&, const gsl::span<const uint32_t>)>;
966 using EndReaderCallback = std::function<void()>;
967
970
972 RawReaderCRU& createReader(const std::string_view inputFileName,
973 uint32_t numTimeBins = 0,
974 uint32_t link = 0,
975 uint32_t stream = 0,
976 uint32_t debugLevel = 0,
977 uint32_t verbosity = 0,
978 const std::string_view outputFilePrefix = "")
979 // RawReaderCRU& createReader(std::string_view fileName, uint32_t numTimeBins)
980 {
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();
984 }
985
986 void setupReaders(const std::string_view inputFileNames,
987 uint32_t numTimeBins = 1000,
988 uint32_t debugLevel = 0,
989 uint32_t verbosity = 0,
990 const std::string_view outputFilePrefix = "");
991
993 void init();
994
996 auto& getReaders() { return mRawReadersCRU; }
997
999 const auto& getReaders() const { return mRawReadersCRU; }
1000
1002 auto getNumberOfReaders() const { return mRawReadersCRU.size(); }
1003
1005 RawReaderCRU& getLastReader() { return *mRawReadersCRU.back().get(); }
1006
1008 const RawReaderCRU& getLastReader() const { return *mRawReadersCRU.back().get(); }
1009
1011 void resetReaders() { mRawReadersCRU.clear(); }
1012
1014 void resetEventSync() { mEventSync.reset(); }
1015
1017 void reset()
1018 {
1019 resetReaders();
1021 mIsInitialized = false;
1022 }
1023
1025 void setEventNumber(uint32_t eventNumber)
1026 {
1027 for (auto& reader : mRawReadersCRU) {
1028 reader->setEventNumber(eventNumber);
1029 }
1030 }
1031
1033 const RawReaderCRUEventSync& getEventSync() const { return mEventSync; }
1034
1036 size_t getNumberOfEvents() const { return mEventSync.getNumberOfEvents(); }
1037
1039 size_t getNumberOfCompleteEvents() const { return mEventSync.getNumberOfCompleteEvents(); }
1040
1042 bool isEventComplete(size_t eventNumber) const { return mEventSync.isEventComplete(eventNumber); }
1043
1045 void setDebugLevel(uint32_t debugLevel) { mDebugLevel = debugLevel; }
1046
1048 void setDataType(DataType dataType, RAWDataType rawType)
1049 {
1050 mDataType = dataType;
1051 mRawDataType = rawType;
1052 mDetectDataType = false;
1053 }
1054
1056 DataType getDataType() const { return mDataType; }
1057
1059 void copyEvents(const std::vector<uint32_t> eventNumbers, std::string_view outputDirectory, std::ios_base::openmode mode = std::ios_base::openmode(0));
1060
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));
1063
1065 void writeGBTDataPerLink(std::string_view outputDirectory, int maxEvents = -1);
1066
1068 static void writeGBTDataPerLink(const std::string_view inputFileNames, std::string_view outputDirectory, int maxEvents = -1);
1069
1071 void setADCDataCallback(ADCDataCallback function) { mADCDataCallback = function; }
1072
1074 void setLinkZSCallback(LinkZSCallback function) { mLinkZSCallback = function; }
1075
1077 LinkZSCallback getLinkZSCallback() { return mLinkZSCallback; }
1078
1080 void processEvent(uint32_t eventNumber, EndReaderCallback endReader = nullptr);
1081
1082 private:
1083 std::vector<std::unique_ptr<RawReaderCRU>> mRawReadersCRU{};
1084 RawReaderCRUEventSync mEventSync{};
1085 uint32_t mDebugLevel{0};
1086 DataType mDataType{DataType::Continuous};
1087 RAWDataType mRawDataType{RAWDataType::GBT};
1088 bool mDetectDataType{true};
1089 bool mIsInitialized{false};
1090 ADCDataCallback mADCDataCallback{nullptr};
1091 LinkZSCallback mLinkZSCallback{nullptr};
1092
1093 friend class RawReaderCRU;
1094
1095 ClassDefNV(RawReaderCRUManager, 0); // Manager class for CRU raw readers
1096};
1097
1098} // namespace rawreader
1099} // namespace tpc
1100} // namespace o2
1101#endif
#define verbosity
int32_t i
void output(const std::map< std::string, ChannelStat > &channels)
Definition rawdump.cxx:197
Definition of the RAW Data Header.
uint16_t pos
Definition RawData.h:3
uint32_t j
Definition RawData.h:0
Class for time synchronization of RawReader instances.
Pad and row inside a ROC.
Definition PadROCPos.h:37
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
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
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
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
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
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
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)
friend std::ostream & operator<<(std::ostream &output, const PacketDescriptor &packetDescriptor)
void streamTo(std::ostream &output) const
write data to ostream
Reader for RAW TPC data.
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 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
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
struct _cl_event * event
Definition glcorearb.h:2982
GLenum mode
Definition glcorearb.h:266
GLsizeiptr size
Definition glcorearb.h:659
GLsizei const GLfloat * value
Definition glcorearb.h:819
GLboolean * data
Definition glcorearb.h:298
GLintptr offset
Definition glcorearb.h:660
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
GLfloat v0
Definition glcorearb.h:811
GLfloat GLfloat v1
Definition glcorearb.h:812
GLuint GLuint stream
Definition glcorearb.h:1806
RuntimeErrorRef runtime_error(const char *)
std::function< bool(int cru, int rowInSector, int padInRow, int timeBin, float adcValue)> ADCCallback
o2::header::RDHAny RDH
@ 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
@ RDHDump
dump full RDH
@ 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.
uint16_t FEEIDType
Definition RDHUtils.h:26
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
Defining DataPointCompositeObject explicitly as copiable.
bool isComplete(RAWDataType rawDataType=RAWDataType::GBT) const
bool operator<(const EventInfo &other) const
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
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
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