ROOT logo
#ifndef ALIGENKR_H
#define ALIGENKR_H
/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 * See cxx source for full Copyright notice                               */

/* $Id$ */

//
// Generator of Krypton decay
//
#include "AliGenerator.h"
class AliGenKrypton : public AliGenerator
{
public:
  AliGenKrypton();
  virtual void Generate();
  virtual ~AliGenKrypton(){}
  private:
  void KrDecay(Int_t &nelectron, Int_t &ngamma, Double_t *eelectron, Double_t *egamma);

  ClassDef(AliGenKrypton,1)
};
#endif
 AliGenKrypton.h:1
 AliGenKrypton.h:2
 AliGenKrypton.h:3
 AliGenKrypton.h:4
 AliGenKrypton.h:5
 AliGenKrypton.h:6
 AliGenKrypton.h:7
 AliGenKrypton.h:8
 AliGenKrypton.h:9
 AliGenKrypton.h:10
 AliGenKrypton.h:11
 AliGenKrypton.h:12
 AliGenKrypton.h:13
 AliGenKrypton.h:14
 AliGenKrypton.h:15
 AliGenKrypton.h:16
 AliGenKrypton.h:17
 AliGenKrypton.h:18
 AliGenKrypton.h:19
 AliGenKrypton.h:20
 AliGenKrypton.h:21
 AliGenKrypton.h:22
 AliGenKrypton.h:23