3 // Author: Constantin Loizides <mailto:loizides@fi.uib.no>
4 //*-- Copyright&Copy CL
6 #include "AliL3StandardIncludes.h"
8 #include "AliL3RootTypes.h"
9 #include "AliL3Logging.h"
10 #include "AliL3MemHandler.h"
11 #include "AliL3Transform.h"
12 #include "AliL3DigitData.h"
13 #include "AliL3HoughTransformerVhdl.h"
14 #include "AliL3FFloat.h"
20 /** \class AliL3HoughTransformerVhdl
22 //_____________________________________________________________
23 // AliL3HoughTransformerVhdl
25 // Hough transformation class for VHDL comparism.
30 ClassImp(AliL3HoughTransformerVhdl)
33 AliL3HoughTransformerVhdl::AliL3HoughTransformerVhdl()
34 : AliL3HoughTransformerLUT()
43 AliL3HoughTransformerVhdl::AliL3HoughTransformerVhdl(Int_t slice,Int_t patch,Int_t n_eta_segments,Int_t n_its)
44 : AliL3HoughTransformerLUT(slice,patch,n_eta_segments)
52 AliL3HoughTransformerVhdl::~AliL3HoughTransformerVhdl()
57 void AliL3HoughTransformerVhdl::CreateHistograms(Int_t nxbin,Double_t pt_min,Int_t nybin,Double_t phimin,Double_t phimax)
59 AliL3HoughTransformerLUT::CreateHistograms(nxbin,pt_min,nybin,phimin,phimax);
62 void AliL3HoughTransformerVhdl::CreateHistograms(Int_t nxbin,Double_t xmin,Double_t xmax,
63 Int_t nybin,Double_t ymin,Double_t ymax)
65 AliL3HoughTransformerLUT::CreateHistograms(nxbin,xmin,xmax,nybin,ymin,ymax);
67 fEpsilon=(ymax-ymin)/nybin;
68 fSinEpsilon=sin(fEpsilon);
69 fCosEpsilon=cos(fEpsilon);
77 //cout << fEpsilon << " - " << (xmax-xmin)/nxbin << endl;
80 void AliL3HoughTransformerVhdl::Init(Int_t slice,Int_t patch,Int_t n_eta_segments,Int_t n_its)
82 AliL3HoughTransformerLUT::Init(slice,patch,n_eta_segments);
85 void AliL3HoughTransformerVhdl::TransformCircle()
87 //Transform the input data with a circle HT.
88 //The function loops over all the data, and transforms each pixel with the equation:
90 //kappa = lastkappa +- epsilon * lastkappaprime
92 //kappaprime = lastkappaprime -+ epsilon * lastkappa
94 //Each pixel then transforms into a curve in the (kappa,phi0)-space. In order to find
95 //which histogram in which the pixel should be transformed, the eta-value is calcluated
96 //and the proper histogram index is found by GetEtaIndex(eta).
99 AliL3DigitRowData *tempPt = GetDataPointer();
102 LOG(AliL3Log::kError,"AliL3HoughTransformerVhdl::TransformCircle","Data")
103 <<"No input data "<<ENDLOG;
114 //Loop over the padrows:
115 for(Int_t i=fMinRow, row=0; i<=fMaxRow; i++, row++)
117 //Get the data on this padrow:
118 AliL3DigitData *digPt = tempPt->fDigitData;
119 if(i != (Int_t)tempPt->fRow)
121 LOG(AliL3Log::kError,"AliL3HoughTransformerVhdl::TransformCircle","Data")
122 <<"AliL3HoughTransformerLUT::TransformCircle : Mismatching padrow numbering "<<i<<" != "<<(Int_t)tempPt->fRow<<ENDLOG;
126 Float_t x = CalcX(row);
134 //Loop over the data on this padrow:
135 for(UInt_t j=0; j<tempPt->fNDigit; j++)
137 UShort_t charge = digPt[j].fCharge;
140 if((Int_t)charge <= GetLowerThreshold() || (Int_t)charge > GetUpperThreshold())
143 UChar_t pad = digPt[j].fPad;
144 UShort_t time = digPt[j].fTime;
146 if(fLastPad!=pad){ //only update if necessary
152 for(Int_t b=0; b<fNPhi0; b++)
153 fLUTKappa[b]=R2*(y*fLUT2cosphi0[b]-x*fLUT2sinphi0[b]);
155 //Fill the histogram along the phirange
157 Float_t kappaprime=0;
159 Float_t lastkappaprime=0;
161 Float_t R2=1/(x*x+y*y);
166 Float_t phi = fLUTphi0[fNPhi0/2];
167 kappa=A*cos(phi)+B*sin(phi);
168 kappaprime=B*cos(phi)-A*sin(phi);
171 lastkappaprime=kappaprime;
172 // hist->Fill(kappa,phi,charge);
174 for(Int_t b=fNPhi0/2+1; b<fNPhi0; b++){
175 Float_t exact_kappa=R2*(y*fLUT2cosphi0[b]-x*fLUT2sinphi0[b]);
179 if(its==0) { //initialize or re-adjust values
180 kappa=A*cos(phi)+B*sin(phi); //equals exact_kappa!
181 kappaprime=B*cos(phi)-A*sin(phi);
184 //kappa=fCosEpsilon*lastkappa+fSinEpsilon*lastkappaprime;
185 //kappaprime=fCosEpsilon*lastkappaprime-fSinEpsilon*lastkappa;
186 kappa=lastkappa+fEpsilon*lastkappaprime;
187 kappaprime=lastkappaprime-fEpsilon*lastkappa;
192 lastkappaprime=kappaprime;
194 // hist->Fill(kappa,phi,charge);
195 } // end positive running values
197 phi = fLUTphi0[fNPhi0/2];
198 kappa=A*cos(phi)+B*sin(phi);
199 kappaprime=B*cos(phi)-A*sin(phi);
202 lastkappaprime=kappaprime;
203 //hist->Fill(kappa,fLUTphi0[b],charge);
205 for(Int_t b=fNPhi0/2-1; b>=0; b--){
206 Float_t exact_kappa=R2*(y*fLUT2cosphi0[b]-x*fLUT2sinphi0[b]);
208 Float_t phi = fLUTphi0[b];
210 if(its==0) { //initialize or re-adjust values
211 kappa=A*cos(phi)+B*sin(phi); //equals exact_kappa!
212 kappaprime=B*cos(phi)-A*sin(phi);
215 //kappa=fCosEpsilon*lastkappa-fSinEpsilon*lastkappaprime;
216 //kappaprime=fCosEpsilon*lastkappaprime+fSinEpsilon*lastkappa;
217 kappa=lastkappa-fEpsilon*lastkappaprime;
218 kappaprime=lastkappaprime+fEpsilon*lastkappa;
223 lastkappaprime=kappaprime;
225 // hist->Fill(kappa,phi,charge);
231 Float_t z = CalcZ(time);
234 Float_t rz2 = 1 + (x*x+y*y)/(z*z);
235 Int_t eta_index = FindIndex(rz2);
237 if(eta_index < 0 || eta_index >= fNEtas){
238 //LOG(AliL3Log::kWarning,"AliL3HoughTransformerVhdl::TransformCircle","Histograms")<<"No histograms corresponding to eta index value of "<<eta_index<<"."<<ENDLOG;
242 //Get the correct histogrampointer:
243 AliL3Histogram *hist = fParamSpace[eta_index];
245 //LOG(AliL3Log::kWarning,"AliL3HoughTransformerVhdl::TransformCircle","Histograms")<<"Error getting histogram in index "<<eta_index<<"."<<ENDLOG;
249 for(Int_t b=0; b<fNPhi0; b++){
252 Float_t err=fabs((exact_kappa-kappa)/exact_kappa);
255 //cout << max_error << " - " << err << " " << kappa << " " << exact_kappa << " " << kappa/exact_kappa<< endl;
262 //hist->Fill(kappa,fLUTphi0[b],charge);
264 //cout << kappa << " " << fLUTphi0[b] << " " << charge << endl;
267 //Move the data pointer to the next padrow:
268 AliL3MemHandler::UpdateRowPointer(tempPt);
272 cout <<"Max Error: " << max_error << endl;
273 cout <<"Rel Error average: " << rel_error/counter << endl;
278 void AliL3HoughTransformerVhdl::Print()
280 AliL3HoughTransformerLUT::Print();
282 cout << "fEpsilon: " << fEpsilon << endl;
283 cout << "fIts: " << fIts << endl;
286 void AliL3HoughTransformerVhdl::PrintVhdl()
288 cout << "fSlice := " << GetSlice() << ";" << endl;
289 cout << "fPatch := " << GetPatch() << ";" << endl;
290 //cout << "fSector := " << fSector << ";" << endl;
291 //cout << "fSectorRow := " << fSectorRow << ";" << endl;
292 //cout << "fMinRow := " << fMinRow << ";" << endl;
293 //cout << "fMaxRow := " << fMaxRow << ";" << endl;
294 //cout << "fNRows := " << fNRows << ";" << endl;
295 //cout << "fNEtas := " << fNEtas << ";" << endl;
296 //cout << "fNPhi0 := " << fNPhi0 << ";" << endl;
297 cout << "fZSign := " << fZSign << ";" << endl;
298 cout << "fZLengthPlusOff := " << fZLengthPlusOff << ";" << endl;
299 cout << "fPadPitch := " << fPadPitch << ";" << endl;
300 cout << "fTimeWidth := " << fTimeWidth << ";" << endl;
303 cout << "fNLUTX :=" << fNRows << ";" << endl;
304 cout << "fLUTX := ( ";
305 for(Int_t i=0;i<fNRows-1;i++) cout << fLUTX[i] << ", ";
306 cout << fLUTX[fNRows-1] << " );\n" << endl;
307 cout << "fNLUTY := " << fNRows << ";" << endl;
308 cout << "fLUTY := ( ";
309 for(Int_t i=0;i<fNRows-1;i++) cout << fLUTY[i] << ", ";
310 cout << fLUTY[fNRows-1] << " );\n" << endl;
313 cout << "fNLUTEta := " << fNEtas << ";" << endl;
314 cout << "fLUTEta := (";
315 for(Int_t i=0;i<fNEtas-1;i++) cout << fLUTEta[i] << ", ";
316 cout << fLUTEta[fNEtas-1] << " );\n" << endl;
319 cout << "-- Kappa -- " << endl;
320 cout << "fNxbin := " << fNxbin << endl;
321 cout << "fxmin := " << fXmin << endl;
322 cout << "fxmax := " << fXmax << endl;
323 Float_t kdiff=(fXmax-fXmin)/fNxbin;
325 cout << "fKappa := ";
326 for(Int_t i=0;i<fNxbin;i++){
330 cout << k+kdiff << " );\n" << endl;
332 cout << "-- Phi --" << endl;
333 cout << "fNybin := " << fNybin << endl;
334 cout << "fymin := " << fYmin << endl;
335 cout << "fymax := " << fYmax << endl;
337 cout << "\nfNLUTphi0 := " << fNPhi0 << ";" << endl;
338 cout << "fLUTphi0 := (";
339 for(Int_t i=0;i<fNPhi0-1;i++) cout << fLUTphi0[i] << ", ";
340 cout << fLUTphi0[fNPhi0-1] << " );\n" << endl;
342 cout << "\nfNLUT2sinphi0 := " << fNPhi0 << ";" << endl;
343 cout << "fLUT2sinphi0 := (";
344 for(Int_t i=0;i<fNPhi0-1;i++) cout << fLUT2sinphi0[i] << ", ";
345 cout << fLUT2sinphi0[fNPhi0-1] << " );\n" << endl;
347 cout << "\nfNLUT2cosphi0 := " << fNPhi0 << ";" << endl;
348 cout << "fLUT2cosphi0 := (";
349 for(Int_t i=0;i<fNPhi0;i++) cout << fLUT2cosphi0[i] << ", ";
350 cout << fLUT2cosphi0[fNPhi0-1] << " );\n" << endl;
352 //cout << "\nfEpsilon := " << fEpsilon << endl;
353 //cout << "\nfSinEpsilon := " << fSinEpsilon << endl;
354 //cout << "\nfCosEpsilon := " << fCosEpsilon << endl;