Changes as a result of making AliL3Transform static.
[u/mrichter/AliRoot.git] / HLT / hough / AliL3HoughBaseTransformer.cxx
1 //$Id$
2
3 // Author: Anders Vestbo <mailto:vestbo@fi.uib.no>
4 //*-- Copyright &copy ASV 
5
6 #include "AliL3MemHandler.h"
7 #include "AliL3Logging.h"
8 #include "AliL3HoughBaseTransformer.h"
9 #include "AliL3Defs.h"
10 #include "AliL3DigitData.h"
11 #include "AliL3Histogram.h"
12
13 //_____________________________________________________________
14 // AliL3HoughBaseTransformer
15 //
16 // The base class for implementations of Hough Transform on ALICE TPC data.
17 //
18 // This is an abstract class, and is only meant to provide the interface
19 // to the different implementations.
20
21 ClassImp(AliL3HoughBaseTransformer)
22
23 AliL3HoughBaseTransformer::AliL3HoughBaseTransformer()
24 {
25   //Default constructor
26   fDigitRowData = 0;
27 }
28
29 AliL3HoughBaseTransformer::AliL3HoughBaseTransformer(Int_t slice,Int_t patch,Int_t n_eta_segments)
30 {
31   fSlice = slice;
32   fPatch = patch;
33   fNEtaSegments = n_eta_segments;
34   fEtaMin = 0;
35   fEtaMax = fSlice < 18 ? 0.9 : -0.9;
36   fThreshold = 0;
37   fDigitRowData = 0;
38 }
39
40 AliL3HoughBaseTransformer::~AliL3HoughBaseTransformer()
41 {
42
43 }