]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALTriggerSTURawStream.h
- removing obsolote classes
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALTriggerSTURawStream.h
CommitLineData
916f1e76 1#ifndef ALIEMCALTRIGGERSTURAWSTREAM_H
2#define ALIEMCALTRIGGERSTURAWSTREAM_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
9Author: R. GUERNANE LPSC Grenoble CNRS/IN2P3
10*/
11
12#include <TObject.h>
13#include <map>
14
15class AliRawReader;
16
17class AliEMCALTriggerSTURawStream: public TObject
18{
19 public:
20 AliEMCALTriggerSTURawStream();
21 AliEMCALTriggerSTURawStream(AliRawReader* rawReader);
22 virtual ~AliEMCALTriggerSTURawStream();
23
24 virtual void Reset();
25 virtual Bool_t ReadPayLoad();
80e5a1ae 26 virtual void DumpPayLoad(const Option_t *option = "ALL") const;
916f1e76 27
28 virtual void GetADC(Int_t iTRU, UInt_t ADC[]);
29 virtual UInt_t GetL1JetThreshold() const {return fL1JetThreshold;}
30 virtual UInt_t GetL1GammaThreshold() const {return fL1GammaThreshold;}
31
32 virtual Int_t GetNL0GammaPatch() const {return fNL0GammaPatch;}
33 virtual Int_t GetNL1GammaPatch() const {return fNL1GammaPatch;}
34 virtual Int_t GetNL1JetPatch() const {return fNL1JetPatch;}
35
36 virtual Bool_t GetL0GammaPatch(const Int_t i, Int_t& x, Int_t& y, Int_t& z) const;
37 virtual Bool_t GetL1GammaPatch(const Int_t i, Int_t& x, Int_t& y, Int_t& z) const;
38 virtual Bool_t GetL1JetPatch(const Int_t i, Int_t& x, Int_t& y) const;
39
40 virtual UInt_t L0() {return fL0;}
41
42private:
43
44 AliEMCALTriggerSTURawStream(const AliEMCALTriggerSTURawStream& rhs);
45 AliEMCALTriggerSTURawStream& operator = (const AliEMCALTriggerSTURawStream& rhs);
46
47 AliRawReader* fRawReader; // object for reading the raw data
48
49 UInt_t fL1JetThreshold;
50 UInt_t fL1GammaThreshold;
51 UShort_t* fL0GammaPatchIndex; // [fNL0GammaPatch]
52 UShort_t* fL1GammaPatchIndex; // [fNL1GammaPatch]
53 UShort_t* fL1JetPatchIndex; // [fNL1JetPatch]
54
55 Int_t fNL0GammaPatch;
56 Int_t fNL1JetPatch;
57 Int_t fNL1GammaPatch;
58
59 UInt_t fADC[32][96];
60 UInt_t fL0;
61
62 ClassDef(AliEMCALTriggerSTURawStream,1) // class for reading EMCAL STU DDL raw data
63};
64
65#endif