04fa961a |
1 | #ifndef ALIMONITORITS_H |
2 | #define ALIMONITORITS_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 | |
10 | class AliITSgeom; |
04fa961a |
11 | |
12 | |
13 | class AliMonitorITS : public AliMonitor { |
14 | public: |
15 | AliMonitorITS(AliITSgeom* param); |
c4bd737c |
16 | AliMonitorITS(const AliMonitorITS& monitor); |
17 | AliMonitorITS& operator = (const AliMonitorITS& monitor); |
18 | virtual ~AliMonitorITS() {}; |
04fa961a |
19 | |
20 | virtual void CreateHistos(TFolder* folder); |
21 | virtual void FillHistos(AliRunLoader* runLoader, |
b6a3610d |
22 | AliRawReader* rawReader, AliESD* esd); |
04fa961a |
23 | |
24 | private: |
25 | AliITSgeom* fGeom; // ITS geometry |
26 | |
27 | AliMonitorHisto* fSDDDigitsCharge; // charge distribution of ITS-SDD digits |
28 | AliMonitorHisto* fSSDDigitsCharge; // charge distribution of ITS-SSD digits |
29 | AliMonitorHisto* fSDDClustersCharge; // charge distribution of ITS-SDD clusters |
30 | AliMonitorHisto* fSSDClustersCharge; // charge distribution of ITS-SSD clusters |
31 | AliMonitorHisto* fSPDNClustersVsModule; // mean number of ITS-SPD clusters per module |
32 | AliMonitorHisto* fSDDNClustersVsModule; // mean number of ITS-SDD clusters per module |
33 | AliMonitorHisto* fSSDNClustersVsModule; // mean number of ITS-SSD clusters per module |
34 | AliMonitorHisto* fNClustersVsLayer; // mean number of ITS clusters per layer |
35 | AliMonitorHisto* fNTracks; // number of ITS tracks per event |
36 | AliMonitorHisto* fNTracksITSTPC; // correlation of number of ITS and TPC tracks per event |
37 | AliMonitorHisto* fTrackPt; // pt distribution of ITS tracks |
38 | AliMonitorHisto* fTrackEta; // eta distribution of ITS tracks |
39 | AliMonitorHisto* fTrackPhi; // phi distribution of ITS tracks |
40 | AliMonitorHisto* fTrackDEdxVsP; // dE/dx vs momentum distribution of TPC tracks |
41 | |
42 | ClassDef(AliMonitorITS, 0) // creation and filling of monitor histograms for ITS |
43 | }; |
44 | |
45 | |
46 | #endif |
47 | |
48 | |
49 | |
50 | |
51 | |
52 | |
53 | |
54 | |
55 | |