From 1a0cb37384cb8153e4f62b51268c2c70164d5653 Mon Sep 17 00:00:00 2001 From: cvetan Date: Tue, 6 Mar 2012 10:58:30 +0000 Subject: [PATCH] New event header version (3.13) which contains new event type - SYNC. --- RAW/AliRawEventHeaderBase.h | 3 ++- RAW/AliRawEventHeaderVersions.h | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/RAW/AliRawEventHeaderBase.h b/RAW/AliRawEventHeaderBase.h index 6ae2d76e36d..57c554df711 100644 --- a/RAW/AliRawEventHeaderBase.h +++ b/RAW/AliRawEventHeaderBase.h @@ -72,7 +72,8 @@ public: kStartOfData = 10, // START_OF_DATA kEndOfData = 11, // END_OF_DATA kSystemSoftwareTriggerEvent = 12, // SYSTEM_SOFTWARE_TRIGGER_EVENT - kDetectorSoftwareTriggerEvent = 13 // DETECTOR_SOFTWARE_TRIGGER_EVENT + kDetectorSoftwareTriggerEvent = 13, // DETECTOR_SOFTWARE_TRIGGER_EVENT + kSyncEvent = 14 // SYNC_EVENT }; private: diff --git a/RAW/AliRawEventHeaderVersions.h b/RAW/AliRawEventHeaderVersions.h index 974bae5d3a3..809e0ed18aa 100644 --- a/RAW/AliRawEventHeaderVersions.h +++ b/RAW/AliRawEventHeaderVersions.h @@ -162,4 +162,19 @@ START_EVENT_HEADER(3,12) END_EVENT_HEADER(3,12) +START_EVENT_HEADER(3,13) + + UInt_t fType; // event type + UInt_t fRunNb; // run number + UInt_t fId[2]; // id field + UInt_t fTriggerPattern[2]; // trigger pattern + UInt_t fDetectorPattern; // detector pattern + UInt_t fTypeAttribute[3]; // system (0,1) and user (2) attributes + UInt_t fLdcId; // LDC id + UInt_t fGdcId; // GDC id + UInt_t fTimestamp; // event timestamp + UInt_t fTimestampUsec; // event timestamp (microseconds) + +END_EVENT_HEADER(3,13) + #endif -- 2.43.0