]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVGEN/AliGenBeamGas.h
Code causing warning messages corrected.
[u/mrichter/AliRoot.git] / EVGEN / AliGenBeamGas.h
CommitLineData
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
12class TTree;
13
14class AliGenBeamGas : public AliGenExtFile
15{
16 public:
17 AliGenBeamGas();
198bb1c7 18 AliGenBeamGas(const AliGenBeamGas &beamgas);
4bda3bc1 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();
198bb1c7 27 private:
28 void Copy(AliGenBeamGas&) const;
4bda3bc1 29 protected:
30 Int_t fInteractions;
31
508eeb68 32 ClassDef(AliGenBeamGas,1) //Generate for beam gas interactions
4bda3bc1 33
34};
35#endif
36
37
38
39
40
41