]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVGEN/AliGenCorrHF.h
AliCaloPID: Correct matching rejection in case of recalculation in the analysis,...
[u/mrichter/AliRoot.git] / EVGEN / AliGenCorrHF.h
1 #ifndef ALIGENCORRHF_H
2 #define ALIGENCORRHF_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 //
9 // Class to generate correlated Heavy Flavor hadron pairs using paramtrized
10 // kinematics of quark pairs from some generator and quark fragmentation functions.
11 // Is a generalisation of AliGenParam class for correlated pairs of hadrons.
12 // Author: S. Grigoryan, LPC Clermont-Fd & YerPhI, Smbat.Grigoryan@cern.ch
13 //
14
15 #include "AliGenMC.h"
16
17 class AliPythia;
18 class TParticle;
19 class TH2F;
20 class TFile;
21 class TString;
22
23 //-------------------------------------------------------------
24 class AliGenCorrHF : public AliGenMC
25 {
26  public:
27     AliGenCorrHF();
28     AliGenCorrHF(Int_t npart, Int_t idquark, Int_t energy);
29     AliGenCorrHF(char* tname, Int_t npart, Int_t idquark, Int_t energy);
30      
31     virtual ~AliGenCorrHF();
32     virtual void Generate();
33     virtual void Init();
34     // force decay type
35     virtual void SetDecayer(AliDecayer* decayer) {fDecayer = decayer;}
36
37     // Hadron pair composition functions, needed by GetHadronPair
38     static void IpCharm(TH2F *hProbHH, Int_t &pdg3, Int_t &pdg4);
39     static void IpBeauty(TH2F *hProbHH, Int_t &pdg3, Int_t &pdg4);
40
41     // Computation of cumulative sums of cell wght-s, needed by GetQuarkPair
42     Double_t ComputeIntegral(TFile* fG);
43
44     // fG - input file with QQbar kinematical grid (TTree) and fragm. functions (24 TH2-s)
45     static void GetQuarkPair(TFile* fG, Double_t* fInt, Double_t &y1, Double_t &y2, Double_t &pt1, Double_t &pt2, Double_t &dphi);              
46     static void GetHadronPair(TFile* fG, Int_t idq, Double_t y1, Double_t y2, Double_t pt1, Double_t pt2, Int_t &id3, Int_t &id4, Double_t &pz3, Double_t &pz4, Double_t &pt3, Double_t &pt4); 
47    //Setting the flag for Background transportation while using SetForceDecay()
48     void SetSelectAll(Bool_t selectall) {fSelectAll = selectall;}
49
50  protected:
51     TString     fFileName;    // Name of the input file
52     TFile*      fFile;        //! Pointer to input file
53     Int_t       fQuark;       // Quark type
54     Int_t       fEnergy;      // p-p c.m.s. energy 
55     Float_t     fBias;        // Biasing factor
56     Int_t       fTrials;      // Number of trials
57     Bool_t      fSelectAll;   // Flag for transportation of Background while using SetForceDecay()
58     AliDecayer* fDecayer;     //! Pointer to pythia object for decays
59
60  private:
61     AliGenCorrHF(const AliGenCorrHF &CorrHF);
62     AliGenCorrHF & operator=(const AliGenCorrHF & rhs);
63
64     Double_t* fgIntegral;  //! Pointer to array of cumulative sums of wght-s
65         
66     static Int_t  fgnptbins;             // =12 Number of bins for the fragm. 
67                                          //   function dependence on quark pt
68     // Number of the grid bins in deltaphi, y and pt:  18, 30 and 50
69     static Double_t fgdph[19];           // deltaphi bin coordinates  
70     static Double_t fgy[31];             // y bin coordinates
71     static Double_t fgpt[51];            // pt bin coordinates
72     static Double_t fgptbmin[12];        // min & max coordinates of pt bins for
73     static Double_t fgptbmax[12];        // the fragm. function
74     ClassDef(AliGenCorrHF,2)  // Generator using parameterized QQbar & fragm. functions
75 };
76 #endif
77
78
79
80
81
82
83
84
85
86
87