]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MONITOR/AliMonitorHLT.h
changes in the MagF constructor
[u/mrichter/AliRoot.git] / MONITOR / AliMonitorHLT.h
CommitLineData
97d6eb66 1#ifndef ALIMONITORHLT_H
2#define ALIMONITORHLT_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#include "AliMonitor.h"
c4bd737c 9
10class AliTPCParam;
97d6eb66 11
12
13class AliMonitorHLT : public AliMonitor {
14public:
15 AliMonitorHLT(AliTPCParam* param);
c4bd737c 16 virtual ~AliMonitorHLT() {};
97d6eb66 17
18 virtual void CreateHistos(TFolder* folder);
19 virtual void FillHistos(AliRunLoader* runLoader,
af885e0f 20 AliRawReader* rawReader, AliESDEvent* esd);
97d6eb66 21
22private:
17c3cc9e 23 AliMonitorHLT(const AliMonitorHLT& monitor);
24 AliMonitorHLT& operator = (const AliMonitorHLT& monitor);
25
97d6eb66 26 AliTPCParam* fParam; // TPC parameters
27
28 AliMonitorHisto* fClustersCharge; // charge distribution of HLT clusters
29 AliMonitorHisto* fNClustersVsRow; // mean number of HLT clusters per pad row
30 AliMonitorHisto* fNClustersVsSector; // mean number of HLT clusters per sector
31 AliMonitorTrend* fNTracks; // number of HLT tracks per event
32 AliMonitorHisto* fTrackPt; // pt distribution of HLT tracks
33 AliMonitorHisto* fTrackEta; // eta distribution of HLT tracks
34 AliMonitorHisto* fTrackPhi; // phi distribution of HLT tracks
db9d2b7f 35 AliMonitorHisto* fTrackNHits; // number of hits per HLT track
36 AliMonitorHisto* fTrackDEdxVsP; // dedx distribution of HLT tracks
524a85e8 37 AliMonitorHisto* fTrackDEdx; // dedx distribution of HLT tracks for a given momentum region
db9d2b7f 38 AliMonitorHisto* fTrackDz0; // dz0 distribution of HLT tracks
39 AliMonitorHisto* fTrackDr0; // dr0 distribution of HLT tracks
524a85e8 40 AliMonitorHisto* fTrackEtaVsPhi; // phi vs eta for HLT tracks
41 AliMonitorHisto* fPtEtaVsPhi; // phi vs eta for HLT tracks
c6ba6205 42 AliMonitorHisto* fTrackZvsNHits; // z vs the number of hits per track
43 AliMonitorHisto* fTrackXYvsNHits; // xy vs the number of hits per track
97d6eb66 44
45 ClassDef(AliMonitorHLT, 0) // creation and filling of monitor histograms for HLT
46};
47
48
49#endif
50
51
52
53
54
55
56
57
58