]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TGeant3/AliGeant3.h
Check status code of particles in Pythia event
[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
16#include <AliVMC.h>
17
18class AliGeant3 : public AliVMC
19{
20
21private:
22
23public:
24 AliGeant3(const char *title);
25 AliGeant3();
26 virtual ~AliGeant3() {}
27 //
28 //
29 void FinishGeometry();
30 void BuildPhysics();
31 void ProcessEvent();
32 ClassDef(AliGeant3,1) //Generic MonteCarlo Class
33
34};
35
36#endif
37