]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliHoughFilter.h
Set Probabilities to zero if there is no signal in any plane
[u/mrichter/AliRoot.git] / RAW / AliHoughFilter.h
CommitLineData
e10815f1 1#ifndef ALIHOUGHFILTER_H
2#define ALIHOUGHFILTER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8///
9/// high level filter algorithm for TPC using a hough transformation
10///
11
12#include "AliFilter.h"
13
14
15class AliHoughFilter: public AliFilter {
16public:
17 AliHoughFilter();
18
19 virtual Bool_t Filter(AliRawEvent* event, AliESD* esd);
20
21private:
22 ClassDef(AliHoughFilter, 0) // TPC hough filter
23};
24
25#endif