]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - FMD/AliFMDPreprocessor.cxx
fixing a bug in the FMD preprocessor affecting the FMD reconstruction
[u/mrichter/AliRoot.git] / FMD / AliFMDPreprocessor.cxx
index 9d50b4bf215e36c59a258589ef248b1cc2697e35..57385b76b7d12749fcc7b8055f9e8384700da1d4 100644 (file)
@@ -304,27 +304,28 @@ AliFMDPreprocessor::GetPedestalCalibration(TList* pedFiles)
       Log(Form("File %s not found!", filename));
       continue;
     }
-
-    // Get header (how long is it ?)
-    TString header;
-    header.ReadLine(in);
-    header.ToLower();
-    if(!header.Contains(pars->GetPedestalShuttleID())) {
-      Log("File header is not from pedestal!");
-      continue;
-    }
-    Log("File contains data from pedestals");
-    
-    // Read columns line
-    int lineno = 2;
-    header.ReadLine(in);
-    
     // Loop until EOF
-    while(in.peek()!=EOF) {
+    int lineno = 0;
+    char cc;
+    while((cc = in.peek())!=EOF) {
       if(in.bad()) { 
        Log(Form("Bad read at line %d in %s", lineno, filename));
        break;
       }
+      if (cc == '#') { 
+       TString line;
+       line.ReadLine(in);
+       lineno++;
+       if (lineno == 1) {
+         line.ToLower();
+         if(!line.Contains(pars->GetPedestalShuttleID())) {
+           Log(Form("File header is not from pedestal!: %s", line.Data()));
+           break;
+         }
+         Log("File contains data from pedestals");
+       }
+       continue;
+      }
       UShort_t det, sec, strip;
       Char_t ring;
       Float_t ped, noise, mu, sigma, chi2ndf;
@@ -384,26 +385,27 @@ AliFMDPreprocessor::GetGainCalibration(TList* gainFiles)
       Log(Form("File %s not found!", filename));
       continue;
     }
-
-    //Get header (how long is it ?)
-    TString header;
-    header.ReadLine(in);
-    header.ToLower();
-    if(!header.Contains(pars->GetGainShuttleID())) {
-      Log("File header is not from gain!");
-      continue;
-    }
-    Log("File contains data from pulse gain");
-
-    // Read column headers
-    header.ReadLine(in);
-
-    int lineno  = 2;
-    // Read until EOF 
-    while(in.peek()!=EOF) {
-      if(in.bad()) { 
-       Log(Form("Bad read at line %d in %s", lineno, filename));
-       break;
+    // Loop until EOF                                                                                                                                   
+    int lineno = 0;
+    char cc;
+    while((cc = in.peek())!=EOF) {
+      if(in.bad()) {
+        Log(Form("Bad read at line %d in %s", lineno, filename));
+        break;
+      }
+      if (cc == '#') {
+        TString line;
+        line.ReadLine(in);
+        lineno++;
+        if (lineno == 1) {
+          line.ToLower();
+          if(!line.Contains(pars->GetGainShuttleID())) {
+            Log(Form("File header is not from gains!: %s", line.Data()));
+            break;
+          }
+          Log("File contains data from gains");
+        }
+       continue;
       }
       UShort_t det, sec, strip;
       Char_t ring;