]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MONITOR/AliMonitorV0s.h
New version of TOF tracker which uses TOF clusters as an input (A. De Caro)
[u/mrichter/AliRoot.git] / MONITOR / AliMonitorV0s.h
CommitLineData
04fa961a 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"
04fa961a 9
10
11class AliMonitorV0s : public AliMonitor {
12public:
13 AliMonitorV0s();
c4bd737c 14 AliMonitorV0s(const AliMonitorV0s& monitor);
15 AliMonitorV0s& operator = (const AliMonitorV0s& monitor);
16 virtual ~AliMonitorV0s() {};
04fa961a 17
18 virtual void CreateHistos(TFolder* folder);
19 virtual void FillHistos(AliRunLoader* runLoader,
b6a3610d 20 AliRawReader* rawReader, AliESD* esd);
04fa961a 21
22private:
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