]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVGEN/AliGenKrypton.h
make the update of the period level QA safe (by running in a temp location and only...
[u/mrichter/AliRoot.git] / EVGEN / AliGenKrypton.h
1 #ifndef ALIGENKR_H
2 #define ALIGENKR_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 //
9 // Generator of Krypton decay
10 //
11 #include "AliGenerator.h"
12 class AliGenKrypton : public AliGenerator
13 {
14 public:
15   AliGenKrypton();
16   virtual void Generate();
17   virtual ~AliGenKrypton(){}
18   private:
19   void KrDecay(Int_t &nelectron, Int_t &ngamma, Double_t *eelectron, Double_t *egamma);
20
21   ClassDef(AliGenKrypton,1)
22 };
23 #endif