]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ZDC/AliZDCRawStream.h
DAs upgraded to AliZDCRawStream class
[u/mrichter/AliRoot.git] / ZDC / AliZDCRawStream.h
CommitLineData
8309c1ab 1#ifndef ALIZDCRAWSTREAM_H
2#define ALIZDCRAWSTREAM_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
1ee299a5 8//////////////////////////////////////////////////
9// //
10// Class to provide access to ZDC raw data //
11// Author: Chiara Oppedisano //
12// //
13//////////////////////////////////////////////////
8309c1ab 14
15#include <TObject.h>
fee50699 16#include "AliCDBManager.h"
17#include "AliCDBStorage.h"
18#include "AliZDCChMap.h"
8309c1ab 19
20class AliRawReader;
1ee299a5 21class AliRawDataHeader;
8309c1ab 22
23
24class AliZDCRawStream: public TObject {
25 public :
cc2abffd 26 AliZDCRawStream(AliRawReader* rawReader);
8309c1ab 27 virtual ~AliZDCRawStream();
8309c1ab 28 virtual Bool_t Next();
c93c022b 29
30 virtual void ReadChMap();
8309c1ab 31
1ee299a5 32 virtual void ReadCDHHeader();
e42bdf10 33 virtual void DecodeScaler();
8309c1ab 34
c93c022b 35 UInt_t GetRawBuffer() const {return fBuffer;}
1ee299a5 36
c93c022b 37 Int_t GetDeadfaceOffset() const {return fDeadfaceOffset;}
38 Int_t GetDeadbeefOffset() const {return fDeadbeefOffset;}
39 Int_t GetDataOffset() const {return fDataOffset;}
40
41 Int_t GetSector(Int_t i) const {return fSector[i];}
42 Int_t GetModType() const {return fModType;}
43 Int_t GetADCModule() const {return fADCModule;}
44 Int_t GetADCNChannels() const {return fADCNChannels;}
45 Int_t GetADCChannel() const {return fADCChannel;}
46 Int_t GetADCValue() const {return fADCValue;}
47 Int_t GetADCGain() const {return fADCGain;}
fee50699 48
49 // Map from OCDB
50 AliCDBStorage *SetStorage(const char* uri);
51 AliZDCChMap *GetChMap() const;
52
53 Int_t GetCabledSignal() const {return fCabledSignal;}
c93c022b 54 Int_t GetADCModFromMap(Int_t i) const {return fMapADC[i][0];}
55 Int_t GetADCChFromMap(Int_t i) const {return fMapADC[i][1];}
56 Int_t GetADCSignFromMap(Int_t i) const {return fMapADC[i][2];}
57 Int_t GetDetectorFromMap(Int_t i) const {return fMapADC[i][3];}
58 Int_t GetTowerFromMap(Int_t i) const {return fMapADC[i][4];}
59
60 Bool_t IsDARCHeader() const {return fIsDARCHeader;}
61 Bool_t IsChMapping() const {return fIsChMapping;}
62 Bool_t IsADCDataWord() const {return fIsADCDataWord;}
63 Bool_t IsADCHeader() const {return fIsADCHeader;}
64 Bool_t IsADCEOB() const {return fIsADCEOB;}
e42bdf10 65
66 UInt_t GetScNWords() const {return fScNWords;}
67 UInt_t GetScGeo() const {return fScGeo;}
68 UInt_t GetScTS() const {return fScTS;}
69 UInt_t GetTriggerNumber() const {return fScTriggerNumber;}
1ee299a5 70
71 void SetSector(Int_t i, Int_t val) {fSector[i] = val;}
72 void SetMapADCMod(Int_t iraw, Int_t imod) {fMapADC[iraw][0]=imod;}
fee50699 73 void SetMapADCCh(Int_t iraw, Int_t ich) {fMapADC[iraw][1]=ich;}
1ee299a5 74 void SetMapADCSig(Int_t iraw, Int_t isig) {fMapADC[iraw][2]=isig;}
fee50699 75 void SetMapDet(Int_t iraw, Int_t idet) {fMapADC[iraw][3]=idet;}
76 void SetMapTow(Int_t iraw, Int_t itow) {fMapADC[iraw][4]=itow;}
77
78 void SetSODReading(Bool_t iset) {fSODReading = iset;}
1ee299a5 79
80 enum EZDCRawStreamError{
81 kCDHError = 1,
82 kDARCError = 2,
83 kZDCDataError = 3,
c93c022b 84 kInvalidADCModule = 4};
1ee299a5 85
86 enum ZDCSignal{kNotConnected=0, kVoid=1,
87 kZNAC=2, kZNA1=3, kZNA2=4, kZNA3=5, kZNA4=6,
88 kZPAC=7, kZPA1=8, kZPA2=9, kZPA3=10, kZPA4=11,
89 kZNCC=12, kZNC1=13, kZNC2=14, kZNC3=15, kZNC4=16,
90 kZPCC=17, kZPC1=18, kZPC2=19, kZPC3=20, kZPC4=21,
91 kZEM1=22, kZEM2=23,
92 kZDCAMon=24, kZDCCMon=25,
93 kZNACoot=26, kZNA1oot=27, kZNA2oot=28, kZNA3oot=29, kZNA4oot=30,
94 kZPACoot=31, kZPA1oot=32, kZPA2oot=33, kZPA3oot=34, kZPA4oot=35,
95 kZNCCoot=36, kZNC1oot=37, kZNC2oot=38, kZNC3oot=39, kZNC4oot=40,
96 kZPCCoot=41, kZPC1oot=42, kZPC2oot=43, kZPC3oot=44, kZPC4oot=45,
97 kZEM1oot=46, kZEM2oot=47,
98 kZDCAMonoot=48, kZDCCMonoot=49};
99
8309c1ab 100 private :
101 AliZDCRawStream(const AliZDCRawStream& stream);
102 AliZDCRawStream& operator = (const AliZDCRawStream& stream);
103
1ee299a5 104 AliRawReader* fRawReader; // object for reading the raw data
8309c1ab 105
1ee299a5 106 UInt_t fBuffer; // DARC header + ADC buffer
107 UInt_t fEvType; // Event type
108 Int_t fPosition; // bit position in buffer data word
109
110 Bool_t fIsCalib; // True when calibration run
111 Bool_t fIsDARCHeader; // True when DARC header
112 Bool_t fIsChMapping; // True when reading ch. mapping
113 Bool_t fIsADCDataWord; // True when data word
114 Bool_t fIsADCHeader; // True when ADC header
115 Bool_t fIsADCEOB; // True when EOB
fee50699 116 Bool_t fSODReading; // True when reading SOD (DA)
117 Bool_t fIsMapRead; // True if map is already read
1ee299a5 118
119 // From CDH
120 UInt_t fDARCEvBlockLenght; // DARC block length
121 UInt_t fDARCBlockAttributes;// DARC block attributes
8309c1ab 122
1ee299a5 123 Int_t fDeadfaceOffset; // deadface offset
124 Int_t fDeadbeefOffset; // deadbeef offset
125 Int_t fDataOffset; // data offset
126
127 // ADC signal
128 Int_t fSector[2]; // [detector, sector]
129 Int_t fModType; // Module type
130 Int_t fADCModule; // ADC module
131 Int_t fADCNChannels; // number of ADC ch.
132 Int_t fADCChannel; // ADC channel
133 Int_t fADCValue; // ADC channel
134 Int_t fADCGain; // ADC gain (0=high range; 1=low range)
135
e42bdf10 136 // Scaler
137 UInt_t fScNWords; // no. of words in scaler event
138 UInt_t fScGeo; // scaler GEO address
139 UInt_t fScTS; // ?!?
140 UInt_t fScTriggerNumber; // no. of triggers
141 Bool_t fIsScEventGood; // true if scaler event is good
142
1ee299a5 143 // Channel mapping
144 Int_t fNConnCh; // current mapped ch.
145 Int_t fCabledSignal; // physics signal (from enum)
c93c022b 146 Int_t fMapADC[48][5]; // ADC map for the current run
1ee299a5 147
fee50699 148 ClassDef(AliZDCRawStream, 7) // class for reading ZDC raw digits
8309c1ab 149};
150
151#endif