]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDrawData.h
In AliMUONClusterInfo:
[u/mrichter/AliRoot.git] / TRD / AliTRDrawData.h
1 #ifndef ALITRDRAWDATA_H
2 #define ALITRDRAWDATA_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 ///////////////////////////////////////////////////////////////////////////////
9 //                                                                           //
10 //  Converts TRD digits into a raw data stream                               //
11 //                                                                           //
12 ///////////////////////////////////////////////////////////////////////////////
13
14 #include "TObject.h"
15
16 class TTree;
17
18 class AliRawReader;
19
20 class AliTRDdigitsManager;
21 class AliTRDgeometry;
22 class AliTRDfeeParam;
23 class AliTRDarrayADC;
24
25 class AliTRDrawData : public TObject {
26
27  public:
28
29   AliTRDrawData();
30   AliTRDrawData(const AliTRDrawData &r);
31   virtual ~AliTRDrawData();
32
33   AliTRDrawData &operator=(const AliTRDrawData &/*r*/) { return *this; }
34
35   virtual Bool_t       Digits2Raw(TTree *digits, TTree *tracks = NULL);
36
37   virtual AliTRDdigitsManager *Raw2Digits(AliRawReader *rawReader);
38   virtual AliTRDdigitsManager *Raw2DigitsOLD(AliRawReader *rawReader);
39   static void SetRawFormatVersion(Int_t iver){ fgRawFormatVersion=iver; };
40   static void SetSuppressionLevel(Int_t ilevel){ fgDataSuppressionLevel=ilevel; };
41
42   enum FORMATTYPE
43     {
44       kRawOldFormat  =  0,
45       kRawNewFormat  =  1
46     };
47
48  protected:
49
50   virtual Bool_t       Digits2Raw(AliTRDdigitsManager* digitsManager); // for fRawVersion > 0
51   virtual Int_t        ProduceHcData(AliTRDarrayADC *digits, Int_t side, Int_t det, UInt_t *buf, Int_t maxSize, Bool_t newEvent, Bool_t newSM);
52   virtual Int_t        ProduceHcDataV1andV2(AliTRDarrayADC *digits, Int_t side, Int_t det, UInt_t *buf, Int_t maxSize);
53   virtual Int_t        ProduceHcDataV3(AliTRDarrayADC *digits, Int_t side, Int_t det, UInt_t *buf, Int_t maxSize, Bool_t newEvent);
54   //virtual Int_t      ProduceHcDataV3(AliTRDarrayADC *digits, Int_t side, Int_t det, UInt_t *buf, Int_t maxSize);
55                   void         ProduceSMIndexData(UInt_t *buf, Int_t& nw);                              // SM index words and header - real data format
56           void         WriteIntermediateWords(UInt_t *buf, Int_t& nw, Int_t& of, const Int_t& maxSize, const Int_t& det, const Int_t& side); // writes tracklet-endmarker and additional words between tracklet and raw-data
57           void             WriteIntermediateWordsV2(UInt_t *buf, Int_t& nw, Int_t& of, const Int_t& maxSize, const Int_t& det, const Int_t& side); // real data format
58                   void         AssignStackMask(UInt_t *buf, Int_t nStack);  // re-assignment of stack mask in the SM index word
59           void         AssignLinkMask(UInt_t *buf, Int_t nLayer);   // re-assignment of link mask in the stack index word
60           Int_t        AddStackIndexWords(UInt_t *buf, Int_t nStack, Int_t nMax);   // add stack index words and stack header when there is no data for the stack 
61           Bool_t       ShiftWords(UInt_t *buf, Int_t nStart, Int_t nWords, Int_t nMax); // shifts n words
62   
63   AliTRDgeometry      *fGeo;            //! Geometry
64   AliTRDfeeParam      *fFee;            //! Fee Parameters
65   Int_t                fNumberOfDDLs;   //  Number of DDLs
66
67   ClassDef(AliTRDrawData,5)             //  TRD raw data class
68
69  private:
70
71         static       Int_t  fgRawFormatVersion;                   // simulation raw data version - 0:old , 1:new(real data format)
72         static       Int_t  fgDataSuppressionLevel;                 // Data suppression level - 0:no su, 1: su, 2: deep suppression 
73         static const UInt_t fgkEndOfTrackletMarker  = 0x10001000; // This marks the end of tracklet data words
74
75         Int_t   fSMindexPos;                // Position of SM index word
76     Int_t   fStackindexPos;             // Position of SM index word
77     UInt_t  fEventCounter;              // Event counter(starting from 1)
78
79
80
81
82 };
83 #endif
84
85
86
87
88
89