]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/hough/AliL3HoughBaseTransformer.cxx
Bugfix in AliL3Hough::FindTrackCandidates; when track->SetEta, one has to
[u/mrichter/AliRoot.git] / HLT / hough / AliL3HoughBaseTransformer.cxx
CommitLineData
c52cf5d8 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"
c52cf5d8 9#include "AliL3DigitData.h"
10#include "AliL3Histogram.h"
11
12//_____________________________________________________________
13// AliL3HoughBaseTransformer
14//
15// The base class for implementations of Hough Transform on ALICE TPC data.
237d3f5c 16//
17// This is an abstract class, and is only meant to provide the interface
18// to the different implementations.
c52cf5d8 19
20ClassImp(AliL3HoughBaseTransformer)
21
22AliL3HoughBaseTransformer::AliL3HoughBaseTransformer()
23{
24 //Default constructor
c52cf5d8 25 fDigitRowData = 0;
c52cf5d8 26}
27
28AliL3HoughBaseTransformer::AliL3HoughBaseTransformer(Int_t slice,Int_t patch,Int_t n_eta_segments)
29{
30 fSlice = slice;
31 fPatch = patch;
32 fNEtaSegments = n_eta_segments;
33 fEtaMin = 0;
34 fEtaMax = fSlice < 18 ? 0.9 : -0.9;
3bb06991 35 fLowerThreshold = 3;
36 fUpperThreshold = 1023;
237d3f5c 37 fDigitRowData = 0;
c52cf5d8 38}
39
40AliL3HoughBaseTransformer::~AliL3HoughBaseTransformer()
41{
c52cf5d8 42
237d3f5c 43}