Line data Source code
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 0 : virtual ~AliGenKrypton(){}
18 : private:
19 : void KrDecay(Int_t &nelectron, Int_t &ngamma, Double_t *eelectron, Double_t *egamma);
20 :
21 6 : ClassDef(AliGenKrypton,1)
22 : };
23 : #endif
|