4bda3bc1 |
1 | #ifndef ALIGENBEAMGAS_H |
2 | #define ALIGENBEAMGAS_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 | #include "AliGenExtFile.h" |
10 | #include "AliGenReader.h" |
11 | |
12 | class TTree; |
13 | |
14 | class AliGenBeamGas : public AliGenExtFile |
15 | { |
16 | public: |
17 | AliGenBeamGas(); |
18 | AliGenBeamGas(const AliGenBeamGas &ext); |
19 | virtual ~AliGenBeamGas(); |
20 | // |
21 | virtual void SetNumberOfInteractions(Int_t n) |
22 | {fInteractions = n;} |
23 | // Initialise |
24 | virtual void Init(); |
25 | // generate event |
26 | virtual void Generate(); |
27 | protected: |
28 | Int_t fInteractions; |
29 | |
508eeb68 |
30 | ClassDef(AliGenBeamGas,1) //Generate for beam gas interactions |
4bda3bc1 |
31 | |
32 | }; |
33 | #endif |
34 | |
35 | |
36 | |
37 | |
38 | |
39 | |