]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EVGEN/AliGenFixed.cxx
Transition to NewIO
[u/mrichter/AliRoot.git] / EVGEN / AliGenFixed.cxx
index a4d39bcd18f85a21e2579f873640bccf12e6c331..4f4b1da1b7cce8adc76419b0236aa243fbadadd2 100644 (file)
 
 /*
 $Log$
+Revision 1.7.4.1  2003/04/14 17:33:49  hristov
+Merging with v3-09-08 (part1)
+
+Revision 1.8  2003/01/14 10:50:18  alibrary
+Cleanup of STEER coding conventions
+
+Revision 1.7  2001/10/30 11:27:35  morsch
+fExplicit member data correctly initialized.
+
+Revision 1.6  2001/07/27 17:09:36  morsch
+Use local SetTrack, KeepTrack and SetHighWaterMark methods
+to delegate either to local stack or to stack owned by AliRun.
+(Piotr Skowronski, A.M.)
+
 Revision 1.5  2001/02/24 11:41:59  morsch
 SetGun allows specify completely the particle kinematics and position in one go. (FCA)
 
@@ -53,9 +67,10 @@ All coding rule violations except RS3 corrected (AM)
 //                                                               //
 ///////////////////////////////////////////////////////////////////
 
+#include "TPDGCode.h"
+
 #include "AliGenFixed.h"
 #include "AliRun.h"
-#include "AliPDG.h"
   
 ClassImp(AliGenFixed)
 
@@ -81,6 +96,7 @@ AliGenFixed::AliGenFixed(Int_t npart)
   fTitle="Fixed Particle Generator";
   // Generate Proton by default
   fIpart=kProton;
+  fExplicit = kFALSE;
 }
 
 //_____________________________________________________________________________
@@ -99,7 +115,6 @@ void AliGenFixed::Generate()
   //
   for(i=0;i<fNpart;i++) 
     SetTrack(fTrackIt,-1,fIpart,fP,fOrigin.GetArray(),polar,0,kPPrimary,nt);
-  
 }
   
 //_____________________________________________________________________________