ROOT logo
//-------------------------------------------------------------------------
//    Description: 
//    This class include into LRC library for Long-Range Correlation analysis
//    it is the PtPt class
//    calculates PtPt correlations for abs and rel var
//    Origin: Petr Naumenko, SPbSU-CERN, Petr.Naoumenko@cern.ch,
//    Andrey Ivanov (SPbSU-CERN), Igor Altsebeev (SPbSU-CERN) 
//-------------------------------------------------------------------------
#ifndef ALILRCPTPT_H
#define ALILRCPTPT_H
/*  See cxx source for full Copyright notice */


/* $Id$ */


#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)                 // macro for rootcint

};

#endif

 AliLRCPtPt.h:1
 AliLRCPtPt.h:2
 AliLRCPtPt.h:3
 AliLRCPtPt.h:4
 AliLRCPtPt.h:5
 AliLRCPtPt.h:6
 AliLRCPtPt.h:7
 AliLRCPtPt.h:8
 AliLRCPtPt.h:9
 AliLRCPtPt.h:10
 AliLRCPtPt.h:11
 AliLRCPtPt.h:12
 AliLRCPtPt.h:13
 AliLRCPtPt.h:14
 AliLRCPtPt.h:15
 AliLRCPtPt.h:16
 AliLRCPtPt.h:17
 AliLRCPtPt.h:18
 AliLRCPtPt.h:19
 AliLRCPtPt.h:20
 AliLRCPtPt.h:21
 AliLRCPtPt.h:22
 AliLRCPtPt.h:23
 AliLRCPtPt.h:24
 AliLRCPtPt.h:25
 AliLRCPtPt.h:26
 AliLRCPtPt.h:27
 AliLRCPtPt.h:28
 AliLRCPtPt.h:29
 AliLRCPtPt.h:30
 AliLRCPtPt.h:31
 AliLRCPtPt.h:32
 AliLRCPtPt.h:33
 AliLRCPtPt.h:34
 AliLRCPtPt.h:35
 AliLRCPtPt.h:36
 AliLRCPtPt.h:37
 AliLRCPtPt.h:38
 AliLRCPtPt.h:39
 AliLRCPtPt.h:40
 AliLRCPtPt.h:41