]> git.uio.no Git - u/mrichter/AliRoot.git/blob - THerwig/AliGenHerwig.h
EMCAL geometry can be created independently form anything now
[u/mrichter/AliRoot.git] / THerwig / AliGenHerwig.h
1 #ifndef ALIGENHERWIG_H
2 #define ALIGENHERWIG_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 // Generator using HERWIG as an external generator
9 // The main HERWIG options are accessable for the user through this interface.
10 // Author Andreas Morsch
11 // andreas.morsch@cern.ch
12
13 #include "AliGenMC.h"
14 #include <TString.h>
15 #include <TArrayI.h>
16 #include <AliRndm.h>
17 #include <AliStructFuncType.h>
18
19 class THerwig6;
20 class TArrayI;
21 class TParticle;
22 class TClonesArray;
23
24
25 class AliGenHerwig : public AliGenMC
26
27 {
28     enum {kNoTrigger, kHardProcesses, kDirectPhotons};
29
30  public:
31     AliGenHerwig();
32     AliGenHerwig(Int_t npart);
33     AliGenHerwig(const AliGenHerwig &Herwig);
34     virtual ~AliGenHerwig();
35     virtual void    Generate();
36     virtual void    Init();
37     virtual void    InitJimmy();
38     // set centre of mass energy
39     virtual void    SetBeamMomenta(Float_t p1=7000., Float_t p2=7000.)
40         {fMomentum1 = p1; fMomentum2 = p2;}
41     virtual void    SetProcess(Int_t proc)            {fProcess = proc;}
42     virtual void    KeepFullEvent();
43     virtual void    SetDecaysOff(Int_t flag=1)        {fDecaysOff = flag;}
44     virtual void    SetTrigger(Int_t flag=kNoTrigger) {fTrigger   = flag;}
45     virtual void    SetFlavor(Int_t flag=0)           {fFlavor    = flag;}
46     virtual void    SetSelectAll(Int_t flag=0)        {fSelectAll = flag;}
47     AliGenHerwig &  operator=(const AliGenHerwig & rhs);
48     virtual void    SetStrucFunc(StrucFunc_t func = kCTEQ5L)
49       {fStrucFunc = func;}
50     virtual void    SetPtHardMin(Double_t pt) {fPtHardMin=pt;}
51     virtual void    SetPtRMS(Double_t pt) {fPtRMS=pt;}
52     virtual void    SetMaxPr(Int_t i) {fMaxPr=i;}
53     virtual void    SetMaxErrors(Int_t i) {fMaxErrors=i;}
54     virtual void    FinishRun();
55     virtual void    FinishRunJimmy();
56     virtual void    SetEnSoft(Double_t e) {fEnSoft=e;}
57
58     virtual void    SetHardProcessFile(TString filename) {fFileName=TString(filename);};
59     virtual void    SetEventListRange(Int_t eventFirst=-1, Int_t eventLast=-1);
60
61  protected:
62     Bool_t SelectFlavor(Int_t pid);
63
64  protected:
65     TString     fAutPDF;         // PDF group
66     Int_t       fModPDF;         // PDF set
67     StrucFunc_t fStrucFunc;      //Structure Function
68     Int_t       fKeep;           // Flag to keep full event information
69     Int_t       fDecaysOff;      // Flag to turn off decays of pi0, K_s, D, Lambda, sigma
70     Int_t       fTrigger;        // Trigger type
71     Int_t       fSelectAll;      // Flag to write the full event
72     Int_t       fFlavor;         // Selected particle flavor 4: charm+beauty 5: beauty
73     Float_t     fEnergyCMS;      // Centre of mass energy
74     Float_t     fMomentum1;      // Momentum of projectile
75     Float_t     fMomentum2;      // Momentum of target
76     Float_t     fKineBias;       // Bias from kinematic selection
77     Int_t       fTrials;         // Number of trials
78     Float_t     fXsection;       // Cross-section
79     THerwig6    *fHerwig;        // Herwig
80     Int_t       fProcess;        // Process number
81     Double_t    fPtHardMin;      // lower pT-hard cut
82     Double_t    fPtRMS;          // intrinsic pt of incoming hadrons
83     Int_t       fMaxPr;          // maximum number of events to print out
84     Int_t       fMaxErrors;      // maximum number of errors allowed
85     Double_t    fEnSoft;          // change on soft energy distribution
86     Int_t       fEv1Pr;          // first event to be printed
87     Int_t       fEv2Pr;          // last event to be printed
88     TString     fFileName;       //!Name of file to read from hard scattering
89
90  private:
91     // check if particle is selected as parent particle
92     Bool_t ParentSelected(Int_t ip);
93     // check if particle is selected as child particle
94     Bool_t ChildSelected(Int_t ip);
95     // adjust the weight from kinematic cuts
96     void   AdjustWeights();
97     // check seleted daughters
98     Bool_t DaughtersSelection(TParticle* iparticle, TClonesArray* particles);
99     // check if stable
100     Bool_t Stable(TParticle*  particle);
101
102     void InitPDF();
103
104     ClassDef(AliGenHerwig,1) // AliGenerator interface to Herwig
105 };
106 #endif
107
108
109
110
111