3 // Author: Anders Vestbo <mailto:vestbo@fi.uib.no>
4 //*-- Copyright © ASV
6 #include "AliL3MemHandler.h"
7 #include "AliL3Logging.h"
8 #include "AliL3HoughBaseTransformer.h"
9 #include "AliL3DigitData.h"
10 #include "AliL3Histogram.h"
12 //_____________________________________________________________
13 // AliL3HoughBaseTransformer
15 // The base class for implementations of Hough Transform on ALICE TPC data.
17 // This is an abstract class, and is only meant to provide the interface
18 // to the different implementations.
20 ClassImp(AliL3HoughBaseTransformer)
22 AliL3HoughBaseTransformer::AliL3HoughBaseTransformer()
28 AliL3HoughBaseTransformer::AliL3HoughBaseTransformer(Int_t slice,Int_t patch,Int_t n_eta_segments)
32 fNEtaSegments = n_eta_segments;
34 fEtaMax = fSlice < 18 ? 0.9 : -0.9;
36 fUpperThreshold = 1023;
40 AliL3HoughBaseTransformer::~AliL3HoughBaseTransformer()