]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCCalibRawBase.h
AliTPCcalibBase - use of the current event, track and seed innthe base class
[u/mrichter/AliRoot.git] / TPC / AliTPCCalibRawBase.h
CommitLineData
880c3382 1#ifndef ALITPCCALIBRAWBASE_H
2#define ALITPCCALIBRAWBASE_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/////////////////////////////////////////////////////////////////////////////////////////
7// //
8// Raw data processing base class //
9// //
10/////////////////////////////////////////////////////////////////////////////////////////
11
12#include <TNamed.h>
13
14class AliAltroMapping;
15class AliAltroRawStream;
16class AliRawReader;
17class AliTPCAltroMapping;
18class AliTPCRawStreamFast;
c3066940 19class AliTPCRawStreamV3;
880c3382 20class AliTPCRawStream;
21class AliTPCROC;
22class TTreeSRedirector;
23struct eventHeaderStruct;
24
25class AliTPCCalibRawBase : public TNamed {
26
27
28public:
29 AliTPCCalibRawBase();
30 AliTPCCalibRawBase(const AliTPCCalibRawBase &calib);
31
32 AliTPCCalibRawBase& operator = (const AliTPCCalibRawBase &source);
33
34 virtual ~AliTPCCalibRawBase();
35
36
37 Bool_t ProcessEventFast(AliTPCRawStreamFast *rawStreamFast);
38 Bool_t ProcessEventFast(AliRawReader *rawReader);
c3066940 39
40 //uses the new decoder which is compatible with the new altro format
41 Bool_t ProcessEvent(AliTPCRawStreamV3 *rawStreamV3);
42 Bool_t ProcessEvent(AliRawReader *rawReader);
880c3382 43 Bool_t ProcessEvent(eventHeaderStruct *event);
c3066940 44
45 //For using the old decoder use the following functions
46 Bool_t ProcessEvent(AliTPCRawStream *rawStream);
47 Bool_t ProcessEventOld(AliRawReader *rawReader);
880c3382 48
49 virtual Int_t Update(const Int_t /*isector*/, const Int_t /*iRow*/, const Int_t /*iPad*/,
50 const Int_t /*iTimeBin*/, const Float_t /*signal*/) { return 0; }
5312f439 51 virtual void UpdateDDL() {return;}
96bf9029 52 virtual void ProcessBunch(const Int_t /*sector*/, const Int_t /*row*/, const Int_t /*pad*/,
53 const Int_t /*length*/, const UInt_t /*startTimeBin*/, const UShort_t* /*signal*/) {return; }
880c3382 54 virtual void Analyse(){ return; }
55
56 //Setters
57 void SetRangeTime (Int_t firstTimeBin, Int_t lastTimeBin) { fFirstTimeBin=firstTimeBin; fLastTimeBin=lastTimeBin; } //Set range in which the signal is expected
58 void SetAltroMapping(AliTPCAltroMapping **mapp) { fMapping = mapp; }
59 //
60 void SetUseL1Phase(Bool_t useL1Phase=kTRUE) {fUseL1Phase=useL1Phase;}
c3066940 61 //
62 void SetTimeStampEvent(UInt_t timestamp){ fTimeStamp = timestamp; }
63 void SetRunNumber(UInt_t eventnumber){ fRunNumber = eventnumber; }
64
880c3382 65 //
66 Int_t GetFirstTimeBin() const { return fFirstTimeBin; }
67 Int_t GetLastTimeBin() const { return fLastTimeBin; }
68 Int_t GetNevents() const { return fNevents; }
69 //
70 Double_t GetL1Phase() const {return fAltroL1Phase;}
71 Double_t GetL1PhaseTB() const {return fAltroL1PhaseTB;}
72 Bool_t GetUseL1Phase()const {return fUseL1Phase;}
73//
880c3382 74 UInt_t GetRunNumber() const {return fRunNumber;}
c3066940 75 UInt_t GetTimeStamp() const {return fTimeStamp;}
880c3382 76 UInt_t GetEventType() const {return fEventType;}
77 //
78 AliTPCAltroMapping **GetAltroMapping() { return fMapping; }
79 const AliAltroRawStream *GetAltroRawStream() {return fAltroRawStream;}
80 const AliTPCROC *GetTPCROC() {return fROC;}
81 //
82 void IncrementNevents(){++fNevents;}
83 //
84 void DumpToFile(const Char_t *filename, const Char_t *dir="", Bool_t append=kFALSE);
85 // debug and debug streamer support
86 TTreeSRedirector *GetDebugStreamer();
87 void SetStreamLevel(Int_t streamLevel){fStreamLevel=streamLevel;}
88 void SetDebugLevel(Int_t level) {fDebugLevel = level;}
89 Int_t GetStreamLevel() const {return fStreamLevel;}
90 Int_t GetDebugLevel() const {return fDebugLevel;}
91
92protected:
93 Int_t fFirstTimeBin; // First Time bin used for analysis
94 Int_t fLastTimeBin; // Last Time bin used for analysis
95
96 Int_t fNevents; // Number of processed events
97
98 Int_t fDebugLevel; //! debug level
99 Int_t fStreamLevel; //! level of streamer output
100 //
c3066940 101 UInt_t fRunNumber; // current run number from event header
880c3382 102 UInt_t fTimeStamp; //! time stamp from event header
880c3382 103 UInt_t fEventType; //! current event Type from event header
104 //
105 Double_t fAltroL1Phase; //! L1 Phase
106 Float_t fAltroL1PhaseTB; //! L1 Phase in time bins
c3066940 107 Int_t fCurrRCUId; //! Current RCU Id
108 Int_t fPrevRCUId; //! Previous RCU Id
109 Int_t fCurrDDLNum; //! Current DDL number
110 Int_t fPrevDDLNum; //! Current DDL number
880c3382 111 Bool_t fUseL1Phase; // use L1 Phase information?
112 //
113 TTreeSRedirector *fDebugStreamer; //! debug streamer
114 //
115 AliAltroRawStream *fAltroRawStream; //! pointer to the altro object
116 AliTPCAltroMapping **fMapping; //! Altro Mapping object
117
118 AliTPCROC *fROC; //! ROC information
119
120 virtual void EndEvent() {++fNevents; return; } //fNevents should be updated in the derived classes in a proper place
121 virtual void ResetEvent(){ return; } //Reset Event counters
122
123
c3066940 124 ClassDef(AliTPCCalibRawBase,2) // Calibration base class for raw data processing
880c3382 125
126};
127
128#endif
129