]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MONITOR/AliMonitorITS.h
monitor histograms for HLT added
[u/mrichter/AliRoot.git] / MONITOR / AliMonitorITS.h
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"
9 #include "AliMonitorHisto.h"
10 #include "AliITSgeom.h"
11
12
13 class AliMonitorITS : public AliMonitor {
14 public:
15   AliMonitorITS(AliITSgeom* param);
16
17   virtual void     CreateHistos(TFolder* folder);
18   virtual void     FillHistos(AliRunLoader* runLoader, 
19                               AliRawReader* rawReader);
20
21 private:
22   AliITSgeom*      fGeom;               // ITS geometry
23
24   AliMonitorHisto* fSDDDigitsCharge;    // charge distribution of ITS-SDD digits
25   AliMonitorHisto* fSSDDigitsCharge;    // charge distribution of ITS-SSD digits
26   AliMonitorHisto* fSDDClustersCharge;  // charge distribution of ITS-SDD clusters
27   AliMonitorHisto* fSSDClustersCharge;  // charge distribution of ITS-SSD clusters
28   AliMonitorHisto* fSPDNClustersVsModule;  // mean number of ITS-SPD clusters per module
29   AliMonitorHisto* fSDDNClustersVsModule;  // mean number of ITS-SDD clusters per module
30   AliMonitorHisto* fSSDNClustersVsModule;  // mean number of ITS-SSD clusters per module
31   AliMonitorHisto* fNClustersVsLayer;   // mean number of ITS clusters per layer
32   AliMonitorHisto* fNTracks;            // number of ITS tracks per event
33   AliMonitorHisto* fNTracksITSTPC;      // correlation of number of ITS and TPC tracks per event
34   AliMonitorHisto* fTrackPt;            // pt distribution of ITS tracks
35   AliMonitorHisto* fTrackEta;           // eta distribution of ITS tracks
36   AliMonitorHisto* fTrackPhi;           // phi distribution of ITS tracks
37   AliMonitorHisto* fTrackDEdxVsP;       // dE/dx vs momentum distribution of TPC tracks
38
39   ClassDef(AliMonitorITS, 0)   // creation and filling of monitor histograms for ITS
40 };
41  
42
43 #endif
44
45
46
47
48
49
50
51
52