X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=RAW%2FAliRawReaderFile.h;h=7a4ef27deba93bcaa7f12ab482c3eb44bc05d438;hb=451cbb1de24d65d633ce0a32fe2033ec5230706e;hp=33ebbc1ac094d74458cf19c850ae484dc592d37e;hpb=bf22797aee107f5f60729cd63c596f945d37810c;p=u%2Fmrichter%2FAliRoot.git diff --git a/RAW/AliRawReaderFile.h b/RAW/AliRawReaderFile.h index 33ebbc1ac09..7a4ef27deba 100644 --- a/RAW/AliRawReaderFile.h +++ b/RAW/AliRawReaderFile.h @@ -19,30 +19,33 @@ class fstream; #endif #include +class TArrayC; class AliRawReaderFile: public AliRawReader { public : AliRawReaderFile(Int_t eventNumber = -1); AliRawReaderFile(const char* dirName, Int_t eventNumber = -1); - AliRawReaderFile(const AliRawReaderFile& rawReader); - AliRawReaderFile& operator = (const AliRawReaderFile& rawReader); virtual ~AliRawReaderFile(); - virtual UInt_t GetType() const {return 0;}; - virtual UInt_t GetRunNumber() const {return 0;}; - virtual const UInt_t* GetEventId() const {return 0;}; - virtual const UInt_t* GetTriggerPattern() const {return 0;}; - virtual const UInt_t* GetDetectorPattern() const {return 0;}; + virtual void RequireHeader(Bool_t required); + + virtual UInt_t GetType() const {return fType;}; + virtual UInt_t GetRunNumber() const {return fRunNb;}; + virtual const UInt_t* GetEventId() const {return fId;}; + virtual const UInt_t* GetTriggerPattern() const {return fTriggerPattern;}; + virtual const UInt_t* GetDetectorPattern() const {return &fDetectorPattern;}; virtual const UInt_t* GetAttributes() const {return 0;}; virtual const UInt_t* GetSubEventAttributes() const {return 0;}; virtual UInt_t GetLDCId() const {return 0;}; virtual UInt_t GetGDCId() const {return 0;}; + virtual UInt_t GetTimestamp() const {return fTimestamp;}; - virtual Int_t GetEquipmentSize() const {return 0;}; + virtual Int_t GetEquipmentSize() const {return fEquipmentSize;}; virtual Int_t GetEquipmentType() const {return 0;}; virtual Int_t GetEquipmentId() const {return fEquipmentId;}; virtual const UInt_t* GetEquipmentAttributes() const {return NULL;}; virtual Int_t GetEquipmentElementSize() const {return 0;}; + virtual Int_t GetEquipmentHeaderSize() const {return 0;}; virtual Bool_t ReadHeader(); virtual Bool_t ReadNextData(UChar_t*& data); @@ -53,10 +56,15 @@ class AliRawReaderFile: public AliRawReader { virtual Bool_t NextEvent(); virtual Bool_t RewindEvents(); + void SetEventType(UInt_t type) { fType = type; } + void SetRunNb(UInt_t run) { fRunNb = run; } + void SetDetectorPattern(UInt_t pattern) { fDetectorPattern = pattern; } + protected : TString GetDirName() const; void* OpenDirectory(); Bool_t OpenNextFile(); + Bool_t CreateFileIndex(); Int_t fEventIndex; // index of the event TString fDirName; // name of the input directory @@ -65,6 +73,20 @@ class AliRawReaderFile: public AliRawReader { Int_t fEquipmentId; // equipment ID from file name UChar_t* fBuffer; // buffer for payload Int_t fBufferSize; // size of fBuffer in bytes + Int_t fEquipmentSize; // equipment size from raw-data payload + TArrayC* fDDLIndex; //! the index of DDL files + Int_t fDDLCurrent; //! the index of DDL files + + UInt_t fType; // event type (no idea from where to get it - put physics_event) + UInt_t fRunNb; // run number (no idea from where to get it - put 0) + UInt_t fId[2]; // id field (read from the first CDH found, period is not filled) + UInt_t fTriggerPattern[2]; // the trigger class pattern (read from the first CDH found) + UInt_t fDetectorPattern; // the detector pattern (no idea from where to read it) + UInt_t fTimestamp; // event timestamp (read from the DDL file creation time) + + private : + AliRawReaderFile(const AliRawReaderFile& rawReader); + AliRawReaderFile& operator = (const AliRawReaderFile& rawReader); ClassDef(AliRawReaderFile, 0) // class for reading raw digits from a file };