]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFDDLRawData.h
EMCAL geometry can be created independently form anything now
[u/mrichter/AliRoot.git] / TOF / AliTOFDDLRawData.h
CommitLineData
0e46b9ae 1#ifndef AliTOFDDLRAWDATA_H
2#define AliTOFDDLRAWDATA_H
3
7e6dce66 4/* Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7////////////////////////////////////////////////////////////////////////////
0e46b9ae 8// //
7e6dce66 9// Class used for generating the files containing raw data, //
0e46b9ae 10// required for Data Challenge //
11// //
7e6dce66 12////////////////////////////////////////////////////////////////////////////
13
0e46b9ae 14#include "TObject.h"
7e6dce66 15
d0eb8f39 16class TBranch;
17class TClonesArray;
18
19class AliTOFDigitMap;
d3c7bfac 20class AliTOFGeometry;
d0eb8f39 21class AliTOFRawStream;
22
23class AliTOFDDLRawData:public TObject {
7e6dce66 24
7e6dce66 25 public:
d0eb8f39 26
7e6dce66 27 AliTOFDDLRawData(); // default constructor
d3c7bfac 28 AliTOFDDLRawData(AliTOFGeometry *tofGeom); // constructor
7e6dce66 29 virtual ~AliTOFDDLRawData(){;} // destructor
30 AliTOFDDLRawData(const AliTOFDDLRawData &source); // copy constructor
31 AliTOFDDLRawData& operator=(const AliTOFDDLRawData &source); // ass. op.
d0eb8f39 32 void SetVerbose(Int_t Verbose){fVerbose=Verbose;} // To set the verbose level
33
7e6dce66 34 Int_t RawDataTOF(TBranch* branch);
d0eb8f39 35
7e6dce66 36 private:
7e6dce66 37
d0eb8f39 38 void GetDigits();
39
40 void ReverseArray(UInt_t a[], Int_t n) const;
41
42 void MakeDRMheader(Int_t nDDL, UInt_t *buf);
43 void MakeDRMtrailer(UInt_t *buf);
44 void MakeLTMheader(UInt_t *buf);
45 void MakeLTMdata(UInt_t *buf);
46 void MakeLTMtrailer(UInt_t *buf);
47 void MakeTRMheader(Int_t nTRM, UInt_t *buf);
48 void MakeTRMtrailer(UInt_t *buf);
49 void MakeTRMfiller(UInt_t *buf, UInt_t nWordsPerTRM);
50 void MakeTRMchainHeader(Int_t iChain, Int_t nTRM, UInt_t *buf);
51 void MakeTRMchainTrailer(Int_t iChain, UInt_t *buf);
52 void MakeTDCdigits(Int_t nDDL, Int_t nTRM, Int_t iChain, UInt_t *buf, UInt_t &nWordsPerTRM);
53
54 UInt_t MakeFiller();
55
56 Int_t fVerbose; //Verbose level (0:no msg, 1:msg, 2:digits in txt files)
57 Int_t fIndex; //number of 32-bit words to be stored into the output file
58
59 AliTOFGeometry *fTOFgeometry; //Pointer to the TOF geometry
60
61 AliTOFDigitMap *fTOFdigitMap; //Pointer to the channel-TOF map
62
63 TClonesArray *fTOFdigitArray; //Pointer to the TOF digits
64
65 AliTOFRawStream *fTOFrawStream; //Pointer to the AliTOFRawStream class
d3c7bfac 66
7e6dce66 67 ClassDef(AliTOFDDLRawData,1)
571dda3d 68
7e6dce66 69};
70
71#endif