#ifndef ALILRCPTPT_H
#define ALILRCPTPT_H
#include "AliLRCAnalysis.h"
class TProfile;
class TList;
class TH2D;
class AliLRCPtPt:public AliLRCAnalysis
{
public:
AliLRCPtPt();
~AliLRCPtPt();
AliLRCPtPt(char *name, TH2D* sourceHist, double ptd, TH2D* nb);
AliLRCPtPt(char *name, TH2D* sourceHist, double ptd, TProfile* nb);
AliLRCPtPt(char *fileHistname, char *histname, char *profname, double ptd, char *errhistname);
AliLRCPtPt(const TList * const LHist, char *histname, char *profname, char *ptdname, char *errhistname);
void MakeHistogramm(char *name, TH2D* sourceHist, double ptd, TH2D* nb);
void MakeHistogramm(char *name, TH2D* sourceHist, double ptd, TProfile* nb);
void MakeHistogramm(char *fileHistname, char *histname, char *profname, double ptd, char *errhistname) ;
void MakeHistogramm(const TList * const LHist, char *histname, char *profname, char *ptdname, char *errhistname) ;
ClassDef(AliLRCPtPt,0)
};
#endif