]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSRawStreamSDDCompressed.cxx
Added PID task, some fixes for coding conventions
[u/mrichter/AliRoot.git] / ITS / AliITSRawStreamSDDCompressed.cxx
CommitLineData
7765ca40 1/**************************************************************************
2 * Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
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
16/* $Id $*/
17
18///////////////////////////////////////////////////////////////////
19// //
20// Class to decode compressed SDD Raw Data format //
21// The 32 bits for a data word are defined as follows: //
22// 31 control bit (0=data word, 1= control word) //
23// 30 - //
24// 29 | //
25// 28 |-> 4 bits to identify the Carlos (0-11) inside the DDL //
26// 27 - //
27// 26 detecot side (0= left, =right) //
28// 25 - //
29// 24 | //
30// 23 | //
31// 22 | //
32// 21 |-> 8 bits to identify the anode number (0-255) //
33// 20 | //
34// 19 | //
35// 18 - //
36// 17 - //
37// 16 | //
38// 15 | //
39// 14 | //
40// 13 |-> 8 bits to identify the time bin (0-255) //
41// 12 | //
42// 11 | //
43// 10 - //
44// 9 - //
45// 8 | //
46// 7 | //
47// 6 | //
48// 5 | //
49// 4 |-> 10 bit for the ADC counts //
50// 3 | //
51// 2 | //
52// 1 | //
53// 0 - //
54// //
55// Plus 2 types of control words: //
de075dae 56// - Jitter word = 1000 //
7765ca40 57// - End of module data (needed by the Cluster Finder) = 1111 //
58// //
59// Origin: F.Prino, Torino, prino@to.infn.it //
60// //
61///////////////////////////////////////////////////////////////////
62
63
64
65#include "AliITSRawStreamSDDCompressed.h"
66#include "AliRawReader.h"
67#include "AliLog.h"
68
69ClassImp(AliITSRawStreamSDDCompressed)
70
71
72
73//______________________________________________________________________
74AliITSRawStreamSDDCompressed::AliITSRawStreamSDDCompressed(AliRawReader* rawReader) :
75 AliITSRawStream(rawReader),
76fDDLModuleMap(0),
77fData(0),
78fCarlosId(-1),
79fChannel(0),
80fJitter(0),
81fDDL(0)
82{
83// create an object to read ITS SDD raw digits
7765ca40 84 for(Int_t im=0;im<kSDDModules;im++){
85 fLowThresholdArray[im][0]=0;
86 fLowThresholdArray[im][1]=0;
87 }
88 fRawReader->Reset();
89 fRawReader->Select("ITSSDD");
90
91
92}
93
94//______________________________________________________________________
95AliITSRawStreamSDDCompressed::AliITSRawStreamSDDCompressed(const AliITSRawStreamSDDCompressed& rs) :
96AliITSRawStream(rs.fRawReader),
97fDDLModuleMap(rs.fDDLModuleMap),
98fData(0),
99fCarlosId(-1),
100fChannel(0),
101fJitter(0),
102fDDL(0)
103{
104 // copy constructor
105 AliError("Copy constructor should not be used.");
106}
107//__________________________________________________________________________
108AliITSRawStreamSDDCompressed& AliITSRawStreamSDDCompressed::operator=(const AliITSRawStreamSDDCompressed& rs) {
109 // assignment operator
110 if (this!=&rs) {}
111 AliError("Assignment opertator should not be used.");
112 return *this;
113}
114
115//______________________________________________________________________
116AliITSRawStreamSDDCompressed::~AliITSRawStreamSDDCompressed(){
117 if(fDDLModuleMap) delete fDDLModuleMap;
118}
119
120
6297cc01 121//______________________________________________________________________
122Int_t AliITSRawStreamSDDCompressed::DecompAmbra(Int_t value) const
123{
124 // AMBRA decompression (from 8 to 10 bit)
125
126 if ((value & 0x80) == 0) {
127 return value & 0x7f;
128 } else if ((value & 0x40) == 0) {
129 return 0x081 + ((value & 0x3f) << 1);
130 } else if ((value & 0x20) == 0) {
131 return 0x104 + ((value & 0x1f) << 3);
132 } else {
133 return 0x208 + ((value & 0x1f) << 4);
134 }
135
136}
7765ca40 137//______________________________________________________________________
138Bool_t AliITSRawStreamSDDCompressed::Next()
139{
140// read the next raw digit
141// returns kFALSE if there is no digit left
de075dae 142// returns kTRUE and fCompletedModule=kFALSE and fCompletedDDL=kFALSE when a digit is found
143// returns kTRUE and fCompletedModule=kTRUE and fCompletedDDL=kFALSE when a module is completed (=3x3FFFFFFF footer words)
144// returns kTRUE and fCompletedModule=kFALSE and fCompletedDDL=kTRUE when a DDL is completed (=jitter word)
7765ca40 145
f7bcb379 146
de075dae 147 UInt_t maskjit=8; // Jitter word has the 4 most significant bits = 1000
7765ca40 148 UInt_t maskeom=15; // end of module has the 4 most significant bits = 1111
149 UInt_t maskmod=15; // last 4 bits for module number in end of module word
f7bcb379 150 // UInt_t maskDDL=0xFF; // last 8 bits for DDL number in start of DDL word
151
7765ca40 152 UInt_t maskCarlos=15<<27; // 4 bits (27-30) for CarlosId in data word
153 UInt_t maskSide=1<<26; // 1 bit (26) for side in data word
154 UInt_t maskAnode=255<<18; // 8 bits (18-25) for Nanode in data word
155 UInt_t maskTb=255<<10; // 8 bits (10-27) for Ntimebin in data word
156 UInt_t maskADC=1023; // 10 bits (0-9) for ADC in data word
f7bcb379 157
158 while(kTRUE){
f7bcb379 159 if (!fRawReader->ReadNextInt(fData)) return kFALSE; // read next word
160 UInt_t mostsigbits=fData>>28;
161 if(mostsigbits==maskeom){
162 fCarlosId=fData&maskmod;
cb6d8373 163 fDDL=fRawReader->GetDDLID();
f7bcb379 164 fModuleID = GetModuleNumber(fDDL,fCarlosId);
de075dae 165 fCompletedDDL=kFALSE;
f7bcb379 166 fCompletedModule=kTRUE;
167 return kTRUE;
de075dae 168 } else if(mostsigbits==maskjit){
169 fJitter = fData&0x000000ff;
170 fCompletedModule=kFALSE;
171 fCompletedDDL=kTRUE;
172 return kTRUE;
f7bcb379 173 }else{
174 fCarlosId=(fData&maskCarlos)>>27;
cb6d8373 175 fDDL=fRawReader->GetDDLID();
f7bcb379 176 fModuleID = GetModuleNumber(fDDL,fCarlosId);
177 fChannel=(fData&maskSide)>>26;
178 fCoord1=(fData&maskAnode)>>18;
179 fCoord2=(fData&maskTb)>>10;
6297cc01 180 Int_t sig8bit=fData&maskADC;
181 sig8bit+=fLowThresholdArray[fModuleID-kSPDModules][fChannel];
182 fSignal=DecompAmbra(sig8bit);
f7bcb379 183 fCompletedModule=kFALSE;
de075dae 184 fCompletedDDL=kFALSE;
f7bcb379 185 return kTRUE;
186 }
7765ca40 187 }
188 return kFALSE;
189}
190
191