]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVGEN/AliGenBox.h
Unused includes removed.
[u/mrichter/AliRoot.git] / EVGEN / AliGenBox.h
1 #ifndef ALIGENBOX_H
2 #define ALIGENBOX_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 #include "AliGenerator.h"
9 class AliGenBox : public AliGenerator
10 {
11  public:
12
13   AliGenBox();
14   AliGenBox(Int_t npart);
15   virtual ~AliGenBox() {}
16   virtual void Generate();
17   virtual void Init();
18   virtual void SetPart(Int_t part) {fIpart=part;}
19 protected:
20
21   Int_t fIpart; // Particle type
22
23   ClassDef(AliGenBox,1) // Square box random generator
24 };
25
26 #endif