]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MONITOR/AliMonitorTPC.h
- configure adapted to the new directory structure of the HOMER module in PubSub
[u/mrichter/AliRoot.git] / MONITOR / AliMonitorTPC.h
CommitLineData
04fa961a 1#ifndef ALIMONITORTPC_H
2#define ALIMONITORTPC_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"
04fa961a 9
c4bd737c 10class AliTPCParam;
11class AliMonitorDataTPC;
04fa961a 12
13
14class AliMonitorTPC : public AliMonitor {
15public:
16 AliMonitorTPC(AliTPCParam* param);
17 virtual ~AliMonitorTPC();
18
19 virtual void CreateHistos(TFolder* folder);
20 virtual void CreateBranches(TTree* tree);
21 virtual void FillHistos(AliRunLoader* runLoader,
b6a3610d 22 AliRawReader* rawReader, AliESD* esd);
04fa961a 23
24private:
17c3cc9e 25 AliMonitorTPC(const AliMonitorTPC& monitor);
26 AliMonitorTPC& operator = (const AliMonitorTPC& monitor);
27
04fa961a 28 AliTPCParam* fParam; // TPC parameters
29
30 AliMonitorHisto* fPadsCharge; // charge distribution of TPC pads
31 AliMonitorHisto* fClustersCharge; // charge distribution of TPC clusters
32 AliMonitorHisto* fNClustersVsRow; // mean number of TPC clusters per pad row
33 AliMonitorHisto* fNClustersVsSector; // mean number of TPC clusters per sector
34 AliMonitorTrend* fNTracks; // number of TPC tracks per event
35 AliMonitorHisto* fTrackPt; // pt distribution of TPC tracks
36 AliMonitorHisto* fTrackEta; // eta distribution of TPC tracks
37 AliMonitorHisto* fTrackPhi; // phi distribution of TPC tracks
c650b50c 38 AliMonitorHisto* fTrackNCl; // number of clusters per track
04fa961a 39 AliMonitorHisto* fTrackDEdxVsP; // dE/dx vs momentum distribution of TPC tracks
524a85e8 40 AliMonitorHisto* fTrackDEdx; // dE/dx distribution of TPC tracks for a given momentum region
41 AliMonitorHisto* fTrackEtaVsPhi; // phi vs eta for TPC tracks
42 AliMonitorHisto* fPtEtaVsPhi; // phi vs eta for TPC tracks
04fa961a 43
44 AliMonitorDataTPC* fData; // data for the monitor tree
45
46 ClassDef(AliMonitorTPC, 0) // creation and filling of monitor histograms for TPC
47};
48
49
50#endif
51
52
53
54
55
56
57
58
59