]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TGeant3/AliGeant3.h
Remove compilation of grndmq
[u/mrichter/AliRoot.git] / TGeant3 / AliGeant3.h
CommitLineData
b13db077 1#ifndef ALIGEANT3_H
2#define ALIGEANT3_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// //
10// //
11// Generic interface to MC for AliRoot //
12// //
13// //
14///////////////////////////////////////////////////////////////////////////////
15
875c717b 16#include <TGeant3.h>
b13db077 17
875c717b 18class AliGeant3 : public TGeant3
b13db077 19{
20
b13db077 21public:
22 AliGeant3(const char *title);
875c717b 23 AliGeant3() {}
b13db077 24 virtual ~AliGeant3() {}
875c717b 25
26 void SetColors();
27
b13db077 28 //
29 //
875c717b 30 // Control Methods
31
32 virtual void Init();
33 virtual void FinishGeometry();
34 virtual void ProcessEvent();
35 virtual void ProcessRun(Int_t nevent);
36
ef42d733 37private:
38
b13db077 39 ClassDef(AliGeant3,1) //Generic MonteCarlo Class
40
41};
42
43#endif
44