]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenPythia.h
Decayer functionality of AliPythia has been moved to AliDecayerPythia.
[u/mrichter/AliRoot.git] / EVGEN / AliGenPythia.h
CommitLineData
a0134e39 1#ifndef ALIGENPYTHIA_H
2#define ALIGENPYTHIA_H
3da30618 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
f87cfe57 8
fe4da5cc 9#include "AliGenerator.h"
f87cfe57 10#include "GenTypeDefs.h"
11#include <TArrayI.h>
12
13class AliPythia;
14class TParticle;
fe4da5cc 15
16class AliGenPythia : public AliGenerator
17{
fe4da5cc 18 public:
19 AliGenPythia();
20 AliGenPythia(Int_t npart);
f87cfe57 21 AliGenPythia(const AliGenPythia &Pythia);
fe4da5cc 22 virtual ~AliGenPythia();
23 virtual void Generate();
24 virtual void Init();
25 // select process type
26 virtual void SetProcess(Process_t proc=charm) {fProcess=proc;}
27 // select structure function
28 virtual void SetStrucFunc(StrucFunc_t func=GRV_HO) {fStrucFunc=func;}
29 // select pt of hard scattering
30 virtual void SetPtHard(Float_t ptmin=0, Float_t ptmax=1.e10)
31 {fPtHardMin=ptmin; fPtHardMax=ptmax; }
32 // set centre of mass energy
33 virtual void SetEnergyCMS(Float_t energy=5500) {fEnergyCMS=energy;}
34 // force decay type
886b6f73 35 virtual void SetForceDecay(Decay_t decay=semimuonic) {fForceDecay=decay;}
fe4da5cc 36 // get cross section of process
37 virtual Float_t GetXsection() {return fXsection;}
a8228d85 38 // Check PDG code
39 virtual Int_t CheckPDGCode(Int_t pdgcode);
f87cfe57 40 // Assignment Operator
41 AliGenPythia & operator=(const AliGenPythia & rhs);
a0134e39 42 protected:
43 Process_t fProcess; // Process type
44 StrucFunc_t fStrucFunc; // Structure Function
45 Decay_t fForceDecay; // Decay channel are forced
46 Float_t fEnergyCMS; // Centre of mass energy
47 Float_t fKineBias; // Bias from kinematic selection
48 Int_t fTrials; // Number of trials
49 TArrayI fParentSelect; // Parent particles to be selected
50 TArrayI fChildSelect; // Decay products to be selected
51 Float_t fXsection; // Cross-section
52 AliPythia *fPythia; // Pythia
53 Float_t fPtHardMin; // lower pT-hard cut
54 Float_t fPtHardMax; // higher pT-hard cut
55
56 private:
57 // check if particle is selected as parent particle
58 Bool_t ParentSelected(Int_t ip);
59 // check if particle is selected as child particle
60 Bool_t ChildSelected(Int_t ip);
61 // all kinematic selection cuts go here
62 Bool_t KinematicSelection(TParticle *particle);
63 // adjust the weight from kinematic cuts
64 void AdjustWeights();
65
f87cfe57 66 ClassDef(AliGenPythia,1) // AliGenerator interface to Pythia
fe4da5cc 67};
68#endif
69
70
71
72
73