Line data Source code
1 :
2 : /**************************************************************************
3 : * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 : * *
5 : * Author: The ALICE Off-line Project. *
6 : * Contributors are mentioned in the code where appropriate. *
7 : * *
8 : * Permission to use, copy, modify and distribute this software and its *
9 : * documentation strictly for non-commercial purposes is hereby granted *
10 : * without fee, provided that the above copyright notice appears in all *
11 : * copies and that both the copyright notice and this permission notice *
12 : * appear in the supporting documentation. The authors make no claims *
13 : * about the suitability of this software for any purpose. It is *
14 : * provided "as is" without express or implied warranty. *
15 : **************************************************************************/
16 :
17 : /* $Id$ */
18 :
19 : #include "AliPythiaBase.h"
20 : #include <cstdlib>
21 :
22 2 : ClassImp(AliPythiaBase)
23 :
24 0 : AliPythiaBase::AliPythiaBase()
25 0 : {
26 : // Default constructor
27 0 : }
28 :
29 : void AliPythiaBase::SetSeed(UInt_t)
30 : {
31 0 : Printf("FATAL -> SetSeed not implemented");
32 0 : ::abort();
33 : }
34 :
35 :
|