X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=STEER%2FAliLegoGenerator.cxx;h=e6ba5e14b94ad6abf2581e88c77c429d416ac09d;hb=b940cb9b58c94842426a400bce9465e1714df36f;hp=95e879fe522110049b99eaae49c153c332dd39d7;hpb=116cbefdd457541a56d5dfd1a53b09c3ccc50964;p=u%2Fmrichter%2FAliRoot.git diff --git a/STEER/AliLegoGenerator.cxx b/STEER/AliLegoGenerator.cxx index 95e879fe522..e6ba5e14b94 100644 --- a/STEER/AliLegoGenerator.cxx +++ b/STEER/AliLegoGenerator.cxx @@ -13,16 +13,19 @@ * provided "as is" without express or implied warranty. * **************************************************************************/ -/* $Header$ */ +/* $Id$ */ //------------------------------------------------------------------------ -// // Generic Lego generator code -// +// Uses geantino rays to check the material distributions and detector's +// geometry +// Author: A.Morsch //------------------------------------------------------------------------ #include "AliLegoGenerator.h" #include "AliRun.h" +#include "AliMC.h" +#include "AliLog.h" ClassImp(AliLegoGenerator) @@ -92,11 +95,11 @@ void AliLegoGenerator::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 phi bin:%d\n",fCoor2Bin); + AliDebug(1, Form("Generating rays in phi bin:%d",fCoor2Bin)); fCoor1Bin=0; } else fCoor1Bin++; @@ -124,7 +127,7 @@ void AliLegoGenerator::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); }