]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFDDLRawData.h
commented logging message
[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
d321691a 29 virtual ~AliTOFDDLRawData(); // destructor
7e6dce66 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
515faf5d 36 void SetPackedAcquisitionMode(Bool_t mode) {fPackedAcquisition=mode;};
37 void SetFakeOrphaneProduction(Bool_t flag) {fFakeOrphaneProduction=flag;};
38 void SetMatchingWindow(Int_t matWin) {fMatchingWindow=matWin;}; // setter for fMatchingWindow [bin number]
39 Bool_t GetPackedAcquisitionMode() const {return fPackedAcquisition;};
40 Bool_t GetFakeOrphaneProduction() const {return fFakeOrphaneProduction;};
41 Int_t GetMatchingWindow() const {return fMatchingWindow;}; // getter for fMatchingWindow [bin number]
15ec34b9 42
7e6dce66 43 private:
7e6dce66 44
d0eb8f39 45 void GetDigits();
46
47 void ReverseArray(UInt_t a[], Int_t n) const;
48
49 void MakeDRMheader(Int_t nDDL, UInt_t *buf);
50 void MakeDRMtrailer(UInt_t *buf);
51 void MakeLTMheader(UInt_t *buf);
52 void MakeLTMdata(UInt_t *buf);
53 void MakeLTMtrailer(UInt_t *buf);
54 void MakeTRMheader(Int_t nTRM, UInt_t *buf);
55 void MakeTRMtrailer(UInt_t *buf);
56 void MakeTRMfiller(UInt_t *buf, UInt_t nWordsPerTRM);
57 void MakeTRMchainHeader(Int_t iChain, Int_t nTRM, UInt_t *buf);
58 void MakeTRMchainTrailer(Int_t iChain, UInt_t *buf);
59 void MakeTDCdigits(Int_t nDDL, Int_t nTRM, Int_t iChain, UInt_t *buf, UInt_t &nWordsPerTRM);
60
515faf5d 61 UInt_t MakeFiller();
d0eb8f39 62
15ec34b9 63 Bool_t HeadOrTail() const;
64
515faf5d 65 Int_t fVerbose; //Verbose level (0:no msg, 1:msg,
66 //2:digits in txt files)
67 Int_t fIndex; //number of 32-bit words to be
68 //stored into the output file
15ec34b9 69 Bool_t fPackedAcquisition; //flag for packed/no packed acquisition
515faf5d 70 Bool_t fFakeOrphaneProduction; //flag to insert fake orphane
71 //(leading or trailing) time
72 //measurements
73 Int_t fMatchingWindow; //time window [bin number] where to
74 //search time-of-flight measurements
75 //for the current event
d0eb8f39 76
77 AliTOFGeometry *fTOFgeometry; //Pointer to the TOF geometry
78
79 AliTOFDigitMap *fTOFdigitMap; //Pointer to the channel-TOF map
80
81 TClonesArray *fTOFdigitArray; //Pointer to the TOF digits
82
83 AliTOFRawStream *fTOFrawStream; //Pointer to the AliTOFRawStream class
d3c7bfac 84
7e6dce66 85 ClassDef(AliTOFDDLRawData,1)
571dda3d 86
7e6dce66 87};
88
89#endif