]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MONITOR/AliMonitorV0s.h
Classes for reading raw data moved to the RAW module. New on-line MONITORING module...
[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 #include "AliMonitorHisto.h"
10
11
12 class AliMonitorV0s : public AliMonitor {
13 public:
14   AliMonitorV0s();
15
16   virtual void     CreateHistos(TFolder* folder);
17   virtual void     FillHistos(AliRunLoader* runLoader, 
18                               AliRawReader* rawReader);
19
20 private:
21   AliMonitorHisto* fRadius;             // radius of V0 vertices
22   AliMonitorHisto* fMassK0;             // invariant mass distribution of V0s for pi+ pi- hypothesis
23   AliMonitorHisto* fMassLambda;         // invariant mass distribution of V0s for p pi- hypothesis
24   AliMonitorHisto* fMassAntiLambda;     // invariant mass distribution of V0s for anti-p pi+ hypothesis
25
26   ClassDef(AliMonitorV0s, 0)   // creation and filling of monitor histograms for correlations between TPC and ITS
27 };
28  
29
30 #endif
31
32
33
34
35
36
37
38
39