]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSRawStreamSDD.cxx
Calibration files for SSD built according to real detector status (Panos)
[u/mrichter/AliRoot.git] / ITS / AliITSRawStreamSDD.cxx
CommitLineData
2906f4c2 1/**************************************************************************
27639c72 2 * Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
2906f4c2 3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
ceb607d0 16/* $Id$*/
2906f4c2 17
18///////////////////////////////////////////////////////////////////////////////
19///
20/// This class provides access to ITS SDD digits in raw data.
21///
22///////////////////////////////////////////////////////////////////////////////
23
24#include "AliITSRawStreamSDD.h"
25#include "AliRawReader.h"
39a7c5cc 26#include "AliLog.h"
2906f4c2 27
28ClassImp(AliITSRawStreamSDD)
1ba0280f 29
30const UInt_t AliITSRawStreamSDD::fgkCodeLength[8] = {8, 18, 2, 3, 4, 5, 6, 7};
2906f4c2 31
979b5a5f 32//______________________________________________________________________
2906f4c2 33AliITSRawStreamSDD::AliITSRawStreamSDD(AliRawReader* rawReader) :
e56160b8 34 AliITSRawStream(rawReader),
979b5a5f 35fDDLModuleMap(0),
e56160b8 36fData(0),
a97b3678 37fEventId(0),
14dceddf 38fCarlosId(-1),
e56160b8 39fChannel(0),
a97b3678 40fJitter(0),
6297cc01 41fEightBitSignal(0),
42fDecompressAmbra(kTRUE)
9c8e7d50 43{
2906f4c2 44// create an object to read ITS SDD raw digits
979b5a5f 45 fDDLModuleMap=new AliITSDDLModuleMapSDD();
46 fDDLModuleMap->SetDefaultMap();
27639c72 47 Reset();
83ec5e27 48 for(Int_t im=0;im<kSDDModules;im++){
49 fLowThresholdArray[im][0]=0;
50 fLowThresholdArray[im][1]=0;
51 }
765a9f95 52 for(Int_t i=0;i<kFifoWords;i++) fNfifo[i]=0;
a97b3678 53 for(Int_t i=0;i<kDDLsNumber;i++) fSkip[i]=0;
54 fRawReader->Reset();
362c9d61 55 fRawReader->Select("ITSSDD");
1ba0280f 56
27639c72 57 for(Short_t i=0; i<kCarlosWords; i++) fICarlosWord[i]=0x30000000 + i; // 805306368+i;
58 for(Short_t i=0; i<kFifoWords; i++) fIFifoWord[i]=0x30000010 + i; // 805306384+i;
1ba0280f 59}
60
979b5a5f 61//______________________________________________________________________
62AliITSRawStreamSDD::AliITSRawStreamSDD(const AliITSRawStreamSDD& rs) :
63AliITSRawStream(rs.fRawReader),
64fDDLModuleMap(rs.fDDLModuleMap),
65fData(0),
66fEventId(0),
67fCarlosId(-1),
68fChannel(0),
69fJitter(0),
6297cc01 70fEightBitSignal(0),
71fDecompressAmbra(kTRUE)
979b5a5f 72{
73 // copy constructor
74 AliError("Copy constructor should not be used.");
75}
76//__________________________________________________________________________
77AliITSRawStreamSDD& AliITSRawStreamSDD::operator=(const AliITSRawStreamSDD& rs) {
78 // assignment operator
79 if (this!=&rs) {}
80 AliError("Assignment opertator should not be used.");
81 return *this;
82}
83
84//______________________________________________________________________
85AliITSRawStreamSDD::~AliITSRawStreamSDD(){
86 if(fDDLModuleMap) delete fDDLModuleMap;
87}
88//______________________________________________________________________
1ba0280f 89UInt_t AliITSRawStreamSDD::ReadBits()
90{
91// read bits from the given channel
a97b3678 92 UInt_t result = (fChannelData[fCarlosId][fChannel] & ((1<<fReadBits[fCarlosId][fChannel]) - 1));
93 fChannelData[fCarlosId][fChannel] >>= fReadBits[fCarlosId][fChannel];
94 fLastBit[fCarlosId][fChannel] -= fReadBits[fCarlosId][fChannel];
1ba0280f 95 return result;
2906f4c2 96}
97
979b5a5f 98//______________________________________________________________________
1ba0280f 99Int_t AliITSRawStreamSDD::DecompAmbra(Int_t value) const
100{
a97b3678 101 // AMBRA decompression (from 8 to 10 bit)
102
1ba0280f 103 if ((value & 0x80) == 0) {
104 return value & 0x7f;
105 } else if ((value & 0x40) == 0) {
106 return 0x081 + ((value & 0x3f) << 1);
107 } else if ((value & 0x20) == 0) {
108 return 0x104 + ((value & 0x1f) << 3);
109 } else {
110 return 0x208 + ((value & 0x1f) << 4);
111 }
a97b3678 112
1ba0280f 113}
2906f4c2 114
979b5a5f 115//______________________________________________________________________
2906f4c2 116Bool_t AliITSRawStreamSDD::Next()
117{
118// read the next raw digit
119// returns kFALSE if there is no digit left
5dfa68c5 120// returns kTRUE and fCompletedModule=kFALSE when a digit is found
121// returns kTRUE and fCompletedModule=kTRUE when a module is completed (=3x3FFFFFFF footer words)
122
2906f4c2 123 fPrevModuleID = fModuleID;
5dfa68c5 124 fCompletedModule=kFALSE;
a97b3678 125
a97b3678 126 while (kTRUE) {
27639c72 127
8345a1cf 128 if ((fChannel < 0) || (fCarlosId < 0) || (fChannel >= 2) || (fCarlosId >= kModulesPerDDL) || (fLastBit[fCarlosId][fChannel] < fReadBits[fCarlosId][fChannel]) ) {
14dceddf 129 if (!fRawReader->ReadNextInt(fData)) return kFALSE; // read next word
70881050 130
5dfa68c5 131
c3ad350c 132 if((fData >> 16) == 0x7F00){ // jitter word
e2fc1bc8 133 Reset();
b24ea968 134 Bool_t kSkip = SkipHeaderWord();
135 if(!kSkip) return kSkip;
5dfa68c5 136 continue;
9c8e7d50 137 }
5dfa68c5 138
14dceddf 139 UInt_t nData28= fData >> 28;
140 UInt_t nData30= fData >> 30;
141
142
143 if (nData28== 0x02) { // header
144 fEventId = (fData >> 3) & 0x07FF;
145 } else if (nData28== 0x03) { // Carlos and FIFO words or Footers
146 if(fData>=fICarlosWord[0]&&fData<=fICarlosWord[11]) { // Carlos Word
14dceddf 147 fCarlosId = fData-fICarlosWord[0];
148 Int_t iFifoIdx = fCarlosId/3;
14dceddf 149 fNfifo[iFifoIdx] = fCarlosId;
150 } else if (fData>=fIFifoWord[0]&&fData<=fIFifoWord[3]){ // FIFO word
14dceddf 151 fCarlosId = fNfifo[fData-fIFifoWord[0]];
152 } else if(fData==0x3FFFFFFF){ // Carlos footer
fffa954f 153 fICountFoot[fCarlosId]++; // stop before the last word (last word=jitter)
154 if(fICountFoot[fCarlosId]==3){
155 fCompletedModule=kTRUE;
fffa954f 156 return kTRUE;
9c8e7d50 157 }
14dceddf 158 } else if(fData==0x3F1F1F1F){ // CarlosRX footer
70881050 159 // CARLOSRX footer -- do nothing
14dceddf 160 }else{
70881050 161 fRawReader->AddMajorErrorLog(kDataError,"Bad footer");
fd2d1992 162 AliWarning(Form("Invalid data: bad footer %08X\n", fData));
14dceddf 163 return kFALSE;
9c8e7d50 164 }
14dceddf 165 } else if (nData30 == 0x02 || nData30 == 0x03) {
166 fChannel = nData30-2;
fffa954f 167 fChannelData[fCarlosId][fChannel] +=
168 (ULong64_t(fData & 0x3FFFFFFF) << fLastBit[fCarlosId][fChannel]);
169 fLastBit[fCarlosId][fChannel] += 30;
70881050 170 } else if (nData28== 0x04) {
171 // JTAG word -- do nothing
a97b3678 172 } else { // unknown data format
9c8e7d50 173 fRawReader->AddMajorErrorLog(kDataFormatErr,Form("Invalid data %8.8x",fData));
b24ea968 174 AliWarning(Form("Invalid data: %08X\n", fData));
9c8e7d50 175 return kFALSE;
a97b3678 176 }
177
8345a1cf 178 if(fCarlosId>=0 && fCarlosId <kModulesPerDDL){
e2fc1bc8 179 Int_t nDDL=fRawReader->GetDDLID();
b24ea968 180 fModuleID = GetModuleNumber(nDDL,fCarlosId);
8345a1cf 181 }
a97b3678 182 } else { // decode data
a97b3678 183 if (fReadCode[fCarlosId][fChannel]) {// read the next code word
9c8e7d50 184 fChannelCode[fCarlosId][fChannel] = ReadBits();
185 fReadCode[fCarlosId][fChannel] = kFALSE;
186 fReadBits[fCarlosId][fChannel] = fgkCodeLength[fChannelCode[fCarlosId][fChannel]];
a97b3678 187 } else { // read the next data word
9c8e7d50 188 UInt_t data = ReadBits();
189 fReadCode[fCarlosId][fChannel] = kTRUE;
190 fReadBits[fCarlosId][fChannel] = 3;
191 if (fChannelCode[fCarlosId][fChannel] == 0) { // set the time bin
192 fTimeBin[fCarlosId][fChannel] = data;
193 } else if (fChannelCode[fCarlosId][fChannel] == 1) { // next anode
194 fTimeBin[fCarlosId][fChannel] = 0;
195 fAnode[fCarlosId][fChannel]++;
196 } else { // ADC signal data
6297cc01 197 fEightBitSignal=data + (1 << fChannelCode[fCarlosId][fChannel]);
198 if(fDecompressAmbra) fSignal = DecompAmbra(fEightBitSignal + fLowThresholdArray[fModuleID-kSPDModules][fChannel]);
9c8e7d50 199 fCoord1 = fAnode[fCarlosId][fChannel];
200 fCoord2 = fTimeBin[fCarlosId][fChannel];
201 fTimeBin[fCarlosId][fChannel]++;
14dceddf 202 //printf("Data read, Module=%d , Anode=%d , Time=%d , Charge=%d\n",fModuleID,fCoord1,fCoord2,fSignal);
9c8e7d50 203 return kTRUE;
204 }
a97b3678 205 }
206 }
207 }
14dceddf 208 return kFALSE;
2906f4c2 209}
1ba0280f 210
979b5a5f 211//______________________________________________________________________
a97b3678 212void AliITSRawStreamSDD::Reset(){
765a9f95 213
a97b3678 214 //reset data member for a new ddl
a97b3678 215 for(Int_t i=0;i<2;i++){
216 for(Int_t ic=0;ic<kModulesPerDDL;ic++){
217 fChannelData[ic][i]=0;
218 fLastBit[ic][i]=0;
219 fChannelCode[ic][i]=0;
14dceddf 220 fReadCode[ic][i]=kTRUE;
221 fReadBits[ic][i]=3;
a97b3678 222 fTimeBin[ic][i]=0;
223 fAnode[ic][i]=0;
b24ea968 224 fICountFoot[ic]=0;
a97b3678 225 }
a97b3678 226 }
a97b3678 227}
765a9f95 228
979b5a5f 229//______________________________________________________________________
83ec5e27 230Bool_t AliITSRawStreamSDD::SkipHeaderWord(){
8345a1cf 231 // skip the 1 DDL header word = 0xffffffff
83ec5e27 232 while (kTRUE) {
233 if (!fRawReader->ReadNextInt(fData)) return kFALSE;
765a9f95 234 if ((fData >> 30) == 0x01) continue; // JTAG word
83ec5e27 235 if(fData==0xFFFFFFFF) return kTRUE;
765a9f95 236 }
765a9f95 237}
238