]> git.uio.no Git - u/mrichter/AliRoot.git/blame - VZERO/AliVZEROBuffer.h
MIP calculation added
[u/mrichter/AliRoot.git] / VZERO / AliVZEROBuffer.h
CommitLineData
af095430 1#ifndef AliVZEROBUFFER_H
2#define AliVZEROBUFFER_H
3/* Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
423b5b93 6/////////////////////////////////////////////////////////////////////
7// Class used for storing VZERO digits according to the DDLs format//
8/////////////////////////////////////////////////////////////////////
af095430 9
10#ifdef __CINT__
11class fstream;
12#else
13#include "Riostream.h"
14#endif
15
08f92f14 16#include "AliFstream.h"
af095430 17
18class AliVZEROBuffer:public TObject{
19
20public:
0b2bea8b 21 AliVZEROBuffer();
af095430 22 AliVZEROBuffer(const char* fileName); //constructor
23 virtual ~AliVZEROBuffer(); //destructor
24 AliVZEROBuffer(const AliVZEROBuffer &source); // copy constructor
25 AliVZEROBuffer& operator=(const AliVZEROBuffer &source); // ass. op.
726d762c 26 void WriteTriggerInfo(UInt_t trigger);
423b5b93 27 void WriteTriggerScalers();
28 void WriteBunchNumbers();
29 void WriteChannel(Int_t cell,UInt_t ADC, UInt_t Time);
30 void WriteBeamFlags();
726d762c 31 void WriteMBInfo();
423b5b93 32 void WriteMBFlags();
33 void WriteBeamScalers();
34 void WriteTiming(Int_t cell,UInt_t ADC, UInt_t Time);
35
af095430 36 void SetVerbose(Int_t val){fVerbose=val;}
37 Int_t GetVerbose() const{return fVerbose;}
38
61701f2a 39// Getter of Online channel number (as defined in the FEE readout) from the
40// Offline channel (as defined by aliroot numbering convention):
41 Int_t GetOnlineChannel(Int_t channel) const
42 { Int_t fOnlineChannel[64] = {39, 38, 37, 36, 35, 34, 33, 32,
43 47, 46, 45, 44, 43, 42, 41, 40,
44 55, 54, 53, 52, 51, 50, 49, 48,
45 63, 62, 61, 60, 59, 58, 57, 56,
46 7, 6, 5, 4, 3, 2, 1, 0,
47 15, 14, 13, 12, 11, 10, 9, 8,
48 23, 22, 21, 20, 19, 18, 17, 16,
49 31, 30, 29, 28, 27, 26, 25, 24};
50 return fOnlineChannel[channel]; }
51
af095430 52private:
53 Int_t fVerbose; //Verbosity level: 0-silent, 1:cout msg, 2: txt files for checking
08f92f14 54 AliFstream* f; //The IO file name
af095430 55 ClassDef(AliVZEROBuffer,1)
56};
57
58#endif