4 #ifndef ALIRAWREADERHLT_H
5 #define ALIRAWREADERHLT_H
6 //* This file is property of and copyright by the ALICE HLT Project *
7 //* ALICE Experiment at CERN, All rights reserved. *
8 //* See cxx source for full Copyright notice *
10 /** @file AliRawReaderHLT.h
11 @author Matthias Richter
13 @brief AliRawReader implementation which replaces original input of
14 detectors with the appropriate HLT output. */
16 // see below for class documentation
18 // refer to README to build package
20 // visit http://web.ift.uib.no/~kjeks/doc/alice-hlt
22 #include "AliHLTDataTypes.h"
23 #include "AliRawReader.h" // RAW, base class
28 class AliHLTOUTHandler;
31 * @class AliRawReaderHLT
32 * Handler of HLTOUT data for AliRawReader input.
34 class AliRawReaderHLT : public AliRawReader {
37 AliRawReaderHLT(AliRawReader* pParentReader, const char* options=NULL);
39 virtual ~AliRawReaderHLT();
41 // interface methods of AliRawReader
42 void Select(Int_t detectorID,
43 Int_t minDDLID = -1, Int_t maxDDLID = -1);
44 // void Select(const char *detectorName,
45 // Int_t minDDLID = -1, Int_t maxDDLID = -1);
46 void SelectEquipment(Int_t equipmentType,
47 Int_t minEquipmentId = -1,
48 Int_t maxEquipmentId = -1);
49 void SkipInvalid(Bool_t skip = kTRUE);
50 void SelectEvents(Int_t type);
52 UInt_t GetType() const;
53 UInt_t GetRunNumber() const;
54 const UInt_t* GetEventId() const;
55 const UInt_t* GetTriggerPattern() const;
56 const UInt_t* GetDetectorPattern() const;
57 const UInt_t* GetAttributes() const;
58 const UInt_t* GetSubEventAttributes() const;
59 UInt_t GetLDCId() const;
60 UInt_t GetGDCId() const;
61 UInt_t GetTimestamp() const;
63 const UInt_t* GetEquipmentAttributes() const;
64 Int_t GetEquipmentElementSize() const;
65 Int_t GetEquipmentHeaderSize() const;
67 Int_t GetEquipmentSize() const;
68 Int_t GetEquipmentType() const;
69 Int_t GetEquipmentId() const;
71 Bool_t ReadNextData(UChar_t*& data);
72 Bool_t ReadNextInt(UInt_t& data);
73 Bool_t ReadNextShort(UShort_t& data);
74 Bool_t ReadNextChar(UChar_t& data);
75 Bool_t ReadNext(UChar_t* data, Int_t size);
80 Bool_t RewindEvents();
85 /** standard constructor prohibited */
87 /** copy constructor prohibited */
88 AliRawReaderHLT(const AliRawReaderHLT&);
89 /** assignment operator prohibited */
90 AliRawReaderHLT& operator=(const AliRawReaderHLT&);
94 * Set the ids for the specified detectors in the detector
95 * list. Currently, no other options are available.
97 int ScanOptions(const char* options);
100 * Read the next data block from the HLT stream
102 Bool_t ReadNextHLTData();
105 * Check if a ddlid is part of the ones which are selected for
108 Bool_t IsHLTInput(int ddlid);
111 AliRawReader* fpParentReader; //!transient
114 TString fOptions; //!transient
116 /** current data set, either extracted from the HLT stream or parent raw reader */
117 const AliHLTUInt8_t* fpData; // !transient
119 /** size of the current data set */
120 int fDataSize; // !transient
122 /** current stream offset in the data set */
123 int fOffset; // !transient
125 /** equipment id of the current data set, >0 indicates data set from HLT stream */
126 int fEquipmentId; // !transient
128 /** indicates the availibility of data from the HLT stream */
129 bool fbHaveHLTData; // !transient
131 /** list of detectors for which data will be taken from HLT stream */
132 vector<int> fDetectors; // !transient
134 /** instance of the HLTOUT handler */
135 AliHLTOUT* fpHLTOUT; // !transient
137 /** instance of the data handler providing the current data buffer */
138 AliHLTOUTHandler* fpDataHandler; // !transient
140 ClassDef(AliRawReaderHLT, 2)
143 #define ALIHLTREC_LIBRARY "libHLTrec.so"
144 #define ALIHLTREC_LIBRARY_VERSION 0
145 #define ALIRAWREADERHLT_CREATE_INSTANCE "AliRawReaderHLTCreateInstance"
150 typedef AliRawReader* (*AliRawReaderHLTCreateInstance_t)(AliRawReader* pParentReader, const char* options);
153 * Create an instance of the AliRawReader class
155 AliRawReader* AliRawReaderHLTCreateInstance(AliRawReader* pParentReader, const char* options);