ROOT logo
//-------------------------------------------------------------------------
//    Description: 
//    This class include into LRC library for Long-Range Correlation analysis
//    it is the PtN class
//    calculates PtN correlations for abs and rel var
//    Origin: Petr Naumenko, SPbSU-CERN, Petr.Naoumenko@cern.ch,
//    Andrey Ivanov (SPbSU-CERN), Igor Altsebeev (SPbSU-CERN) 
//-------------------------------------------------------------------------

#ifndef ALILRCPTN_H
#define ALILRCPTN_H
/*  See cxx source for full Copyright notice */


/* $Id$ */


#include "AliLRCAnalysis.h"

class TProfile;
class TList;
class TH2D;


class AliLRCPtN : public AliLRCAnalysis {
    public:
	AliLRCPtN();
	~AliLRCPtN();
	AliLRCPtN(char *name, TH2D* sourceHist, double ptd, TProfile* nb);
	AliLRCPtN(char *name, TH2D* sourceHist, double ptd, TH2D* nb);
	AliLRCPtN(char *fileHistname, char *histname, char *profname, double ptd, char *errhistname);
	AliLRCPtN(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(AliLRCPtN,0)                 // macro for rootcint
};



#endif

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