]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Protection against user code switching off hadronic interactions.
authormorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 13 Nov 2006 16:40:16 +0000 (16:40 +0000)
committermorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 13 Nov 2006 16:40:16 +0000 (16:40 +0000)
TFluka/TFlukaConfigOption.cxx

index 83b20bedfe0faf93ebd638f39cff93b3498a960d..ce1360d81454e6d9fa9bd4ffaf25b344bcea7573 100644 (file)
@@ -170,7 +170,6 @@ void TFlukaConfigOption::WriteFlukaInputCards()
        // Check if sensitive
        if (medium->GetParam(0) != 0.) mediumIsSensitive = kTRUE;
 
-
        fprintf(fgFile,"*\n*Material specific process and cut settings for #%8d %s\n", fMedium, fCMaterial->GetName());
        fCMatMin = fMedium;
        fCMatMax = fMedium;
@@ -505,8 +504,11 @@ void TFlukaConfigOption::ProcessHADR()
     if (fProcessFlag[kHADR] > 0) {
        fprintf(fgFile,"*\n*Hadronic interaction is ON by default in FLUKA\n");
     } else {
-       if (fMedium != -1) printf("Hadronic interactions cannot be switched off material by material !\n");
-       fprintf(fgFile,"THRESHOL  %10.1f%10.1f%10.1f%10.1e%10.1f\n",0., 0., 0., 1.e10, 0.);
+       if (fMedium != -1) {
+          printf("Hadronic interactions cannot be switched off material by material !\n");
+       } else {
+          fprintf(fgFile,"THRESHOL  %10.1f%10.1f%10.1f%10.1e%10.1f\n",0., 0., 0., 1.e10, 0.);
+       }
     }
 }
 
@@ -823,8 +825,8 @@ void  TFlukaConfigOption::ProcessSensitiveMedium()
     fprintf(fgFile,"*\n*Options for sensitive medium \n");
     //
     // EMFFIX
-    fprintf(fgFile,"EMFFIX    %10.1f%10.3f%10.1f%10.1f%10.1f%10.1f\n", fCMatMin, 0.05, 0., 0., 0., 0.);
+    fprintf(fgFile,"EMFFIX    %10.4g%10.4g%10.1f%10.1f%10.1f%10.1f\n", fCMatMin, 0.05, 0., 0., 0., 0.);
     //
     // FLUKAFIX
-    fprintf(fgFile,"FLUKAFIX  %10.3f                    %10.3f\n", 0.05, fCMatMin);
+    fprintf(fgFile,"FLUKAFIX  %10.3g                    %10.3f\n", 0.05, fCMatMin);
 }