]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MONITOR/AliMonitorV0s.h
Mods for MacOSX
[u/mrichter/AliRoot.git] / MONITOR / AliMonitorV0s.h
1 #ifndef ALIMONITORV0S_H
2 #define ALIMONITORV0S_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
11 class AliMonitorV0s : public AliMonitor {
12 public:
13   AliMonitorV0s();
14   AliMonitorV0s(const AliMonitorV0s& monitor);
15   AliMonitorV0s& operator = (const AliMonitorV0s& monitor);
16   virtual ~AliMonitorV0s() {};
17
18   virtual void     CreateHistos(TFolder* folder);
19   virtual void     FillHistos(AliRunLoader* runLoader, 
20                               AliRawReader* rawReader, AliESD* esd);
21
22 private:
23   AliMonitorHisto* fRadius;             // radius of V0 vertices
24   AliMonitorHisto* fMassK0;             // invariant mass distribution of V0s for pi+ pi- hypothesis
25   AliMonitorHisto* fMassLambda;         // invariant mass distribution of V0s for p pi- hypothesis
26   AliMonitorHisto* fMassAntiLambda;     // invariant mass distribution of V0s for anti-p pi+ hypothesis
27
28   ClassDef(AliMonitorV0s, 0)   // creation and filling of monitor histograms for correlations between TPC and ITS
29 };
30  
31
32 #endif
33
34
35
36
37
38
39
40
41