]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MONITOR/AliMonitorTPC.h
Number of pads along z is corrected
[u/mrichter/AliRoot.git] / MONITOR / AliMonitorTPC.h
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"
9
10 class AliTPCParam;
11 class AliMonitorDataTPC;
12
13
14 class AliMonitorTPC : public AliMonitor {
15 public:
16   AliMonitorTPC(AliTPCParam* param);
17   AliMonitorTPC(const AliMonitorTPC& monitor);
18   AliMonitorTPC& operator = (const AliMonitorTPC& monitor);
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, AliESD* esd);
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
37   AliMonitorHisto* fTrackNCl;           // number of clusters per track
38   AliMonitorHisto* fTrackDEdxVsP;       // dE/dx vs momentum distribution of TPC tracks
39   AliMonitorHisto* fTrackDEdx;          // dE/dx distribution of TPC tracks for a given momentum region
40   AliMonitorHisto* fTrackEtaVsPhi;      // phi vs eta for TPC tracks
41   AliMonitorHisto* fPtEtaVsPhi;      // phi vs eta for TPC tracks
42
43   AliMonitorDataTPC* fData;             // data for the monitor tree
44
45   ClassDef(AliMonitorTPC, 0)   // creation and filling of monitor histograms for TPC
46 };
47  
48
49 #endif
50
51
52
53
54
55
56
57
58