]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGCF/EBYE/PIDFluctuation/task/AliEbyEPidRatioQA.h
ParticleRatio Class: Deepika
[u/mrichter/AliRoot.git] / PWGCF / EBYE / PIDFluctuation / task / AliEbyEPidRatioQA.h
CommitLineData
0a28d543 1#ifndef ALIEBYEPIDRATIOQA_H
2#define ALIEBYEPIDRATIOQA_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6//=========================================================================//
7// AliEbyE Analysis for Particle Ratio Fluctuation //
8// Deepika Rathee | Satyajit Jena //
9// drathee@cern.ch | sjena@cern.ch //
10// Date: Wed Jul 9 18:38:30 CEST 2014 //
11// New approch to find particle ratio to reduce memory //
12// (Test Only) //
13//=========================================================================//
14
15
16#include "THnSparse.h"
17#include "AliEbyEPidRatioBase.h"
18
19class AliEbyEPidRatioQA : public AliEbyEPidRatioBase {
20
21 public:
22
23 AliEbyEPidRatioQA();
24 virtual ~AliEbyEPidRatioQA();
25 virtual void Process();
26 THnSparseF* GetHnQA() {return fHnQA;}
27
28 private:
29
30 AliEbyEPidRatioQA(const AliEbyEPidRatioQA&); // not implemented
31 AliEbyEPidRatioQA& operator=(const AliEbyEPidRatioQA&); // not implemented
32 virtual void CreateHistograms();
33
34 THnSparseF *fHnQA; //! THnSparseF : tracks for QA
35
36 ClassDef(AliEbyEPidRatioQA, 1);
37};
38
39#endif