X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=blobdiff_plain;f=PYTHIA6%2FAliDecayerPythia.h;h=6c469bdf950a2a6c9820344698be3bb1fe96cdec;hp=14f9d865f7f5786d7a1746b92615b2f74ca433d5;hb=e8a8adcd2b85d93b595b56b8dceb8f27d1f7c0ad;hpb=014a9521cd7be73bd0d63a47f01342da8144d904 diff --git a/PYTHIA6/AliDecayerPythia.h b/PYTHIA6/AliDecayerPythia.h index 14f9d865f7f..6c469bdf950 100644 --- a/PYTHIA6/AliDecayerPythia.h +++ b/PYTHIA6/AliDecayerPythia.h @@ -18,7 +18,8 @@ public AliDecayer { public: AliDecayerPythia(); -// + AliDecayerPythia(const AliDecayerPythia &decayer); + // virtual ~AliDecayerPythia(){;} virtual void Init(); virtual void Decay(Int_t idpart, TLorentzVector *p); @@ -39,13 +40,13 @@ 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 ForceHadronicD(); void ForceOmega(); Float_t GetBraPart(Int_t kf); - void Copy(AliDecayerPythia &decayer) const; - AliDecayerPythia(const AliDecayerPythia &decayer):AliDecayer(decayer) - {decayer.Copy(*this);} - virtual AliDecayerPythia &operator=(const AliDecayerPythia &decayer) + void Copy(TObject &decayer) const; + + AliDecayerPythia &operator=(const AliDecayerPythia &decayer) {decayer.Copy(*this);return(*this);}