]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenEMCocktail.h
bugfix for correlated propagation of assymetric correlated uncertainty
[u/mrichter/AliRoot.git] / EVGEN / AliGenEMCocktail.h
CommitLineData
e40b9538 1#ifndef ALIGENEMCOCKTAIL_H
2#define ALIGENEMCOCKTAIL_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6//
7// Class to create the cocktail for physics with electrons, di-electrons,
8// and photons from the decay of the following sources:
9// pizero, eta, rho, omega, etaprime, phi
10//
11
12#include "AliGenCocktail.h"
4ae1c9f0 13#include "AliGenEMlib.h"
e40b9538 14#include "AliPythia.h"
4ae1c9f0 15#include "AliDecayer.h"
16#include "AliGenParam.h"
17
e40b9538 18
19class AliGenCocktailEntry;
20
21class AliGenEMCocktail : public AliGenCocktail
22{
4ae1c9f0 23public:
e40b9538 24
25 AliGenEMCocktail();
71443190 26 enum GeneratorCode { kGenPizero=0, kGenEta, kGenRho, kGenOmega, kGenEtaprime, kGenPhi, kGenJpsi, kGenPromptRealGamma, kGenThermRealGamma, kGenPromptVirtGamma, kGenThermVirtGamma, kGENs };
e40b9538 27
28 virtual ~AliGenEMCocktail();
29 virtual void Init();
30 virtual void CreateCocktail();
31 virtual void Generate();
32 Float_t GetDecayMode() const {return fDecayMode;}
33 Float_t GetWeightingMode() const {return fWeightingMode;}
e40b9538 34 void SetDecayer(AliDecayer* const decayer){fDecayer = decayer;}
35 void SetDecayMode(Decay_t decay){ fDecayMode = decay;}
36 void SetWeightingMode(Weighting_t weight){ fWeightingMode = weight;}
4ae1c9f0 37 void SetNPart(Int_t npart){ fNPart = npart; }
38 void SetPtParam(Int_t PtSelect){ fPtSelect = PtSelect; }
39 void SetCentrality(Int_t cent){ fCentrality = cent; }
40 void SetV2Systematic(Int_t v2sys){ fV2Systematic = v2sys; }
41 void SetForceGammaConversion(Bool_t force=kTRUE){ fForceConv=force; }
42 void SetHeaviestParticle(Int_t part){ fHeaviestParticle=part; }
e40b9538 43
4ae1c9f0 44private:
e40b9538 45 AliGenEMCocktail(const AliGenEMCocktail &cocktail);
46 AliGenEMCocktail & operator=(const AliGenEMCocktail &cocktail);
47
48 void AddSource2Generator(Char_t *nameReso, AliGenParam* const genReso);
49
50 AliDecayer* fDecayer; // External decayer
4ae1c9f0 51 Decay_t fDecayMode; //decay mode in which resonances are forced to decay, default: kAll
52 Weighting_t fWeightingMode; //weighting mode: kAnalog or kNonAnalog
e40b9538 53
54 Int_t fNPart; // multiplicity of each source per event
55 Double_t fYieldArray[kGENs]; // array of dN/dy for each source
56
4ae1c9f0 57 Int_t fPtSelect; // selected pT parameterization
58 Int_t fCentrality; // selected centrality
59 Int_t fV2Systematic; //selected systematic error for v2 parameters
60
61 Bool_t fForceConv; //select whether you want to force all gammas to convert imidediately
62 Int_t fHeaviestParticle; //select up to which particle to simulate
63
e40b9538 64 ClassDef(AliGenEMCocktail,1) // cocktail for EM physics
65};
66
67#endif
68
69
70