From 423b5b93ae8362c50f07ed48a680a2d78348659f Mon Sep 17 00:00:00 2001 From: cheynis Date: Wed, 20 Feb 2008 14:44:43 +0000 Subject: [PATCH] New Raw Data format implemented --- VZERO/AliVZEROBuffer.h | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/VZERO/AliVZEROBuffer.h b/VZERO/AliVZEROBuffer.h index 1a04cbf1bdc..0df27b16f5f 100644 --- a/VZERO/AliVZEROBuffer.h +++ b/VZERO/AliVZEROBuffer.h @@ -3,9 +3,9 @@ /* Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ -/////////////////////////////////////////////////////////////////// -// Class used for storing TPC digits according to the DDLs format// -////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////// +// Class used for storing VZERO digits according to the DDLs format// +///////////////////////////////////////////////////////////////////// #ifdef __CINT__ class fstream; @@ -24,9 +24,15 @@ public: AliVZEROBuffer(const AliVZEROBuffer &source); // copy constructor AliVZEROBuffer& operator=(const AliVZEROBuffer &source); // ass. op. void WriteTriggerInfo(UInt_t trigger); - void WriteChannel(Int_t cell,Int_t ADC, Int_t Time); - void WriteScalers(); + void WriteTriggerScalers(); + void WriteBunchNumbers(); + void WriteChannel(Int_t cell,UInt_t ADC, UInt_t Time); + void WriteBeamFlags(); void WriteMBInfo(); + void WriteMBFlags(); + void WriteBeamScalers(); + void WriteTiming(Int_t cell,UInt_t ADC, UInt_t Time); + void SetVerbose(Int_t val){fVerbose=val;} Int_t GetVerbose() const{return fVerbose;} -- 2.39.3