]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
SetSeed dummy implementations
authormorsch <andreas.morsch@cern.ch>
Tue, 24 Feb 2015 16:13:44 +0000 (17:13 +0100)
committermorsch <andreas.morsch@cern.ch>
Tue, 24 Feb 2015 16:14:24 +0000 (17:14 +0100)
EVGEN/AliGenBox.h
EVGEN/AliGenParam.h
TEvtGen/TEvtGen/AliGenEvtGen.h

index 6996b9f83c8b179c7fb5fdc73a2d045edb9d441e..83933c987a0899726315746ea277aad2c553f540 100644 (file)
@@ -26,6 +26,7 @@ class AliGenBox : public AliGenerator
       {SetBit(kEtaRange);fEtaMin = etamin; fEtaMax = etamax;}
   virtual void SetPart(Int_t part) {fIpart=part;}
   virtual void SetParticleType(Int_t part) {SetPart(part);}
+  virtual void SetSeed(UInt_t /*seed*/) {;}
 protected:
 
   Int_t fIpart; // Particle type
index bbd61cebc653437502af3a4f6ab8b0c4dc80c286..5626ba7d524ab687476797e38dbea35f90b91fac 100644 (file)
@@ -65,6 +65,7 @@ public:
     double RandomMass(Double_t mh);
     Int_t VirtualGammaPairProduction(TClonesArray *particles, Int_t nPart);
     Int_t ForceGammaConversion(TClonesArray *particles, Int_t nPart);
+    virtual void SetSeed(UInt_t /*seed*/) {;}
   
 protected:
     Double_t (*fPtParaFunc)(const Double_t*, const Double_t*); //! Pointer to Pt parametrisation function
index a3d1e7cd78be2639e809890ca7f4fed13b45a495..d8771e809f5d62dcdb102c894cec87141f5a3424 100644 (file)
@@ -32,7 +32,7 @@ class AliGenEvtGen : public AliGenerator {
   void SetForceDecay(Decay_t decay = kAll) {fForceDecay = decay;} //set a decay mode
   Bool_t SetUserDecayTable(Char_t *path);
   void SetParticleSwitchedOff(DecayOff_t decay) {fSwitchOff = decay;} //set particles to be decayed by EvtGen
-  
+  void SetSeed(UInt_t /*seed*/) {;}
   protected:
   Int_t GetFlavour(Int_t pdgCode);