]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MONITOR/AliMonitorV0s.h
Correct path to the AMORE OCDB snapshot. To be defined as env variable after discussi...
[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 virtual ~AliMonitorV0s() {};
04fa961a 15
16 virtual void CreateHistos(TFolder* folder);
17 virtual void FillHistos(AliRunLoader* runLoader,
af885e0f 18 AliRawReader* rawReader, AliESDEvent* esd);
04fa961a 19
20private:
17c3cc9e 21 AliMonitorV0s(const AliMonitorV0s& monitor);
22 AliMonitorV0s& operator = (const AliMonitorV0s& monitor);
23
04fa961a 24 AliMonitorHisto* fRadius; // radius of V0 vertices
25 AliMonitorHisto* fMassK0; // invariant mass distribution of V0s for pi+ pi- hypothesis
26 AliMonitorHisto* fMassLambda; // invariant mass distribution of V0s for p pi- hypothesis
27 AliMonitorHisto* fMassAntiLambda; // invariant mass distribution of V0s for anti-p pi+ hypothesis
28
29 ClassDef(AliMonitorV0s, 0) // creation and filling of monitor histograms for correlations between TPC and ITS
30};
31
32
33#endif
34
35
36
37
38
39
40
41
42