]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliLegoGeneratorXYZ.cxx
Updated task list
[u/mrichter/AliRoot.git] / STEER / AliLegoGeneratorXYZ.cxx
index 1ad9748fe7a7d811a4b6aa8d7c46542a0eb1a174..72de0f141de76633506c94b0d5453382ef958186 100644 (file)
@@ -24,6 +24,8 @@
 
 #include "AliLegoGeneratorXYZ.h"
 #include "AliRun.h"
+#include "AliMC.h"
+#include "AliLog.h"
 
 ClassImp(AliLegoGeneratorXYZ)
 
@@ -98,11 +100,11 @@ void AliLegoGeneratorXYZ::Generate()
    // Prepare for next step
    if(fCoor1Bin>=fNCoor1-1)
      if(fCoor2Bin>=fNCoor2-1) {
-       Warning("Generate","End of Lego Generation");
+       AliWarning("End of Lego Generation");
        return;
      } else { 
        fCoor2Bin++;
-       printf("Generating rays in Coordinate 2 bin:%d\n",fCoor2Bin);
+       AliDebug(1, Form("Generating rays in Coordinate 2 bin:%d",fCoor2Bin));
        fCoor1Bin=0;
      } else fCoor1Bin++;
 
@@ -128,7 +130,7 @@ void AliLegoGeneratorXYZ::Generate()
    
    Float_t polar[3]={0.,0.,0.};
    Int_t ntr;
-   gAlice->SetTrack(1, -1, kMpart, pmom, orig, polar, 0, kPPrimary, ntr);
+   gAlice->GetMCApp()->PushTrack(1, -1, kMpart, pmom, orig, polar, 0, kPPrimary, ntr);
    
 }