]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ZDC/AliZDCRecoParamPbPb.h
uniformize name of newer histograms added for primary decays with other existing...
[u/mrichter/AliRoot.git] / ZDC / AliZDCRecoParamPbPb.h
CommitLineData
7bff3766 1#ifndef ALIZDCRECOPARAMPBPB_H
2#define ALIZDCRECOPARAMPBPB_H
3/* Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6//////////////////////////////////////////////////////////
7// //
8// Class with ZDC reconstruction parameters //
9// Pb - Pb collisions //
10// Origin: Chiara.Oppedisano@to.infn.it //
11// //
12//////////////////////////////////////////////////////////
13
73bc3a3f 14#include "AliLog.h"
15#include "AliCDBEntry.h"
16#include "AliCDBManager.h"
7bff3766 17#include "AliZDCRecoParam.h"
7bff3766 18
7bff3766 19class AliZDCRecoParamPbPb : public AliZDCRecoParam {
20 public:
21 AliZDCRecoParamPbPb();
0d579f58 22 AliZDCRecoParamPbPb(TH1D * hNpart, TH1D * hb, Float_t clkCent);
73bc3a3f 23 AliZDCRecoParamPbPb(const AliZDCRecoParamPbPb &oldrecopar);
db0907f4 24 AliZDCRecoParamPbPb& operator= (const AliZDCRecoParamPbPb &recpar);
7bff3766 25 virtual ~AliZDCRecoParamPbPb();
26
1de9cc13 27
28 // make reco parameters for A-A collisions
2d9c70ab 29 static AliZDCRecoParamPbPb *GetHighFluxParam(Float_t beamEnergy);
7bff3766 30
73bc3a3f 31 TH1D* GethNpartDist() const {return fhNpartDist;}
32 TH1D* GethbDist() const {return fhbDist;}
33 Float_t GetClkCenter() const {return fClkCenter;}
2d9c70ab 34
73bc3a3f 35 void SetNpartDist(TH1D *hDist) {fhNpartDist = hDist;}
36 void SetbDist(TH1D *hbDist) {fhbDist = hbDist;}
37 void SetClkCenter(Float_t xValue) {fClkCenter = xValue;}
2d9c70ab 38 void SetGlauberMCDist(Float_t beamEnergy);
7bff3766 39
73bc3a3f 40 //void Print(Option_t *) const;
7bff3766 41
42 protected:
43
7bff3766 44 // *** PARAMETERS FOR Pb-Pb COLLISIONS
73bc3a3f 45 // --- Correlation E_ZDC vs. E_ZEM
2d9c70ab 46 TH1D * fhNpartDist; // Npart distribution from Glauber MC
47 TH1D * fhbDist; // b distribution from Glauber MC
48 Float_t fClkCenter; // clock center: value of x-axis
7bff3766 49
0d579f58 50 ClassDef(AliZDCRecoParamPbPb, 3)
7bff3766 51
52};
53
54#endif