]>
Commit | Line | Data |
---|---|---|
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 | 10 | class AliTPCParam; |
11 | class AliMonitorDataTPC; | |
04fa961a | 12 | |
13 | ||
14 | class AliMonitorTPC : public AliMonitor { | |
15 | public: | |
16 | AliMonitorTPC(AliTPCParam* param); | |
c4bd737c | 17 | AliMonitorTPC(const AliMonitorTPC& monitor); |
18 | AliMonitorTPC& operator = (const AliMonitorTPC& monitor); | |
04fa961a | 19 | virtual ~AliMonitorTPC(); |
20 | ||
21 | virtual void CreateHistos(TFolder* folder); | |
22 | virtual void CreateBranches(TTree* tree); | |
23 | virtual void FillHistos(AliRunLoader* runLoader, | |
24 | AliRawReader* rawReader); | |
25 | ||
26 | private: | |
27 | AliTPCParam* fParam; // TPC parameters | |
28 | ||
29 | AliMonitorHisto* fPadsCharge; // charge distribution of TPC pads | |
30 | AliMonitorHisto* fClustersCharge; // charge distribution of TPC clusters | |
31 | AliMonitorHisto* fNClustersVsRow; // mean number of TPC clusters per pad row | |
32 | AliMonitorHisto* fNClustersVsSector; // mean number of TPC clusters per sector | |
33 | AliMonitorTrend* fNTracks; // number of TPC tracks per event | |
34 | AliMonitorHisto* fTrackPt; // pt distribution of TPC tracks | |
35 | AliMonitorHisto* fTrackEta; // eta distribution of TPC tracks | |
36 | AliMonitorHisto* fTrackPhi; // phi distribution of TPC tracks | |
c650b50c | 37 | AliMonitorHisto* fTrackNCl; // number of clusters per track |
04fa961a | 38 | AliMonitorHisto* fTrackDEdxVsP; // dE/dx vs momentum distribution of TPC tracks |
39 | ||
40 | AliMonitorDataTPC* fData; // data for the monitor tree | |
41 | ||
42 | ClassDef(AliMonitorTPC, 0) // creation and filling of monitor histograms for TPC | |
43 | }; | |
44 | ||
45 | ||
46 | #endif | |
47 | ||
48 | ||
49 | ||
50 | ||
51 | ||
52 | ||
53 | ||
54 | ||
55 |