]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
T0 changed to START (FLUKA input card).
authormorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 18 Dec 2006 14:35:20 +0000 (14:35 +0000)
committermorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 18 Dec 2006 14:35:20 +0000 (14:35 +0000)
TFluka/TFluka.cxx

index fc4096de5becce9a51d49d11f255d8dc082aaa68..91de886c5310f8746797793b3ae63b47e90d0c48 100644 (file)
@@ -1192,13 +1192,13 @@ void TFluka::InitPhysics()
     }
     
     while ((fgets(sLine,255,pFlukaVmcCoreInp)) != NULL) { 
-        if (strncmp(sLine,"T0",5) != 0)
+        if (strncmp(sLine,"START",5) != 0)
             fprintf(pFlukaVmcInp,"%s\n",sLine);
         else {
             sscanf(sLine+10,"%10f",&fEventsPerRun);
             goto fin;
         }
-    } //end of while until T0 card
+    } //end of while until START card
     
  fin:
 
@@ -1254,8 +1254,8 @@ void TFluka::InitPhysics()
 
 // Add RANDOMIZ card
     fprintf(pFlukaVmcInp,"RANDOMIZ  %10.1f%10.0f\n", 1., Float_t(gRandom->GetSeed()));
-// Add T0 and STOP card
-    fprintf(pFlukaVmcInp,"T0     %10.1f\n",fEventsPerRun);
+// Add START and STOP card
+    fprintf(pFlukaVmcInp,"START     %10.1f\n",fEventsPerRun);
     fprintf(pFlukaVmcInp,"STOP      \n");