]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PYTHIA6/AliDecayerPythia.h
Using detector quality flag (taken from ALICE logbook) to decide whether to rpodcue...
[u/mrichter/AliRoot.git] / PYTHIA6 / AliDecayerPythia.h
index 6b124fbd9876a0f8a0c269e0f391a31ba4e67dcf..024d4501f2551c22ad8cdefc9b3e124ed8bdd0e5 100644 (file)
@@ -28,11 +28,15 @@ public AliDecayer
     virtual void    SetForceDecay(Int_t decay)
       {SetForceDecay((Decay_t) decay);}
     virtual void    ForceDecay();
+    virtual void    SetPatchOmegaDalitz() {fPatchOmegaDalitz = 1;}
+    virtual void    SetDecayerExodus()    {fDecayerExodus = 1;}
     virtual void    HeavyFlavourOff() {fHeavyFlavour = kFALSE;}
     virtual void    DecayLongLivedParticles()  {fLongLived    = kTRUE;}
     virtual Float_t GetPartialBranchingRatio(Int_t ipart);
     virtual Float_t GetLifetime(Int_t kf);
     virtual void    SwitchOffBDecay();
+    virtual void    SwitchOffPi0() {fPi0 = 0;}
+    virtual void    SwitchOffParticle(Int_t kf);
     virtual void    WriteDecayTable();
     virtual void    ReadDecayTable();
     
@@ -42,11 +46,12 @@ public AliDecayer
                    Double_t mom, Double_t theta, Double_t phi);
     Int_t    CountProducts(Int_t channel, Int_t particle);
     void     ForceParticleDecay(Int_t particle, Int_t product, Int_t mult);
-    void     ForceParticleDecay(Int_t particle, Int_t* products, Int_t* mult, Int_t npart);
+    void     ForceParticleDecay(Int_t particle, const Int_t* products, Int_t* mult, Int_t npart, Bool_t flag = 0);
     void     ForceHadronicD(Int_t optUser4Bodies=1);
     void     ForceOmega();
     void     ForceLambda();
     void     SwitchOffHeavyFlavour();
+    void     ForceBeautyUpgrade();
     Float_t  GetBraPart(Int_t kf);
     void     Copy(TObject &decayer) const;
 
@@ -60,9 +65,12 @@ public AliDecayer
     Float_t     fBraPart[501];    //! Branching ratios
     Bool_t      fHeavyFlavour;    //! Flag for heavy flavors
     Bool_t      fLongLived;       //! Flag for long lived particle decay
+    Bool_t      fPatchOmegaDalitz;//! Flag to patch the omega Dalitz decays 
+    Bool_t      fDecayerExodus;  //! Flag for EXODUS decayer
+    Bool_t      fPi0;             //! Flag for pi0 decay 
     static Bool_t fgInit;         //! initialization flag 
     
-    ClassDef(AliDecayerPythia, 3) // AliDecayer implementation using Pythia  
+    ClassDef(AliDecayerPythia, 5) // AliDecayer implementation using Pythia  
 };
 #endif