]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MONITOR/AliMonitorHLTHough.h
monitoring of HLT hough transformation added
[u/mrichter/AliRoot.git] / MONITOR / AliMonitorHLTHough.h
CommitLineData
c6ba6205 1#ifndef ALIMONITORHLTHOUGH_H
2#define ALIMONITORHLTHOUGH_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6#include "AliMonitor.h"
7
8class AliTPCParam;
9
10
11class AliMonitorHLTHough : public AliMonitor {
12public:
13 AliMonitorHLTHough(AliTPCParam* param);
14 AliMonitorHLTHough(const AliMonitorHLTHough& monitor);
15 AliMonitorHLTHough& operator = (const AliMonitorHLTHough& monitor);
16 virtual ~AliMonitorHLTHough();
17
18 virtual void CreateHistos(TFolder* folder);
19 virtual void FillHistos(AliRunLoader* runLoader,
20 AliRawReader* rawReader);
21
22private:
23 AliTPCParam* fParam; // TPC parameters
24
25 AliMonitorTrend* fNTracks; // number of HLT tracks per event
26 AliMonitorHisto* fTrackPt; // pt distribution of HLT tracks
27 AliMonitorHisto* fTrackEta; // eta distribution of HLT tracks
28 AliMonitorHisto* fTrackPhi; // phi distribution of HLT tracks
29 AliMonitorHisto* fTrackEtaVsPhi; // phi vs eta for HLT tracks
30 AliMonitorHisto* fPtEtaVsPhi; // phi vs eta for HLT tracks
31
32 ClassDef(AliMonitorHLTHough, 0) // creation and filling of monitor histograms for HLT Hough transform
33};
34
35
36#endif
37
38
39
40
41
42
43
44
45