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