]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenBox.h
Coding rule violations corrected.
[u/mrichter/AliRoot.git] / EVGEN / AliGenBox.h
CommitLineData
790bbabf 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
675e9664 8/*
9 Generator for particles in a preset
10 kinematic range (flat distribution)
11 Comments and suggestions: andreas.morsch@cern.ch
12*/
13
790bbabf 14#include "AliGenerator.h"
15class AliGenBox : public AliGenerator
16{
17 public:
18
19 AliGenBox();
20 AliGenBox(Int_t npart);
21 virtual ~AliGenBox() {}
22 virtual void Generate();
23 virtual void Init();
24 virtual void SetPart(Int_t part) {fIpart=part;}
25protected:
26
27 Int_t fIpart; // Particle type
28
29 ClassDef(AliGenBox,1) // Square box random generator
30};
31
32#endif