]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGLF/SPECTRA/Nuclei/B2/AliLnRatio.h
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWGLF / SPECTRA / Nuclei / B2 / AliLnRatio.h
CommitLineData
2403d402 1#ifndef ALILNRATIO_H
2#define ALILNRATIO_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7// antiparticle / particle ratio
8// author: Eulogio Serradilla <eulogio.serradilla@cern.ch>
9
10#include <TObject.h>
11
12class AliLnRatio: public TObject
13{
14 public:
15
16 AliLnRatio(const TString& species, const TString& ptFilename, const TString& ptTag, const TString& outputFilename, const TString& otag);
17
18 virtual ~AliLnRatio();
19
20 Int_t Exec();
21
22 private:
23
24 AliLnRatio(const AliLnRatio& other);
25 AliLnRatio& operator=(const AliLnRatio& other);
26
27 private:
28
29 TString fSpecies; // particle species
30 TString fPtFilename; // pt filename
31 TString fPtTag; // tag for pt
32
33 TString fOutputFilename; // output filename
34 TString fOutputTag; // tag for the output
35
36 ClassDef(AliLnRatio,1)
37};
38
39#endif // ALILNRATIO_H