]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/TPCPEDESTALda.cxx
Bug fix (Marian)
[u/mrichter/AliRoot.git] / TPC / TPCPEDESTALda.cxx
index d77a374e026dd5373399cfd03905411ec9262398..3895f87570a7f3ed1cb820d3aad71db06bd17860 100644 (file)
@@ -1,34 +1,56 @@
+/*
+TPC DA for online calibration
+
+Contact: Haavard.Helstrup@cern.ch
+Link:
+Run Type: PEDESTAL
+DA Type: LDC
+Number of events needed: 100
+Input Files: 
+Output Files: tpcPedestal.root, to be exported to the DAQ FXS
+fileId:   pedestals    
+Trigger types used: CALIBRATION_EVENT
+
+*/
+
 /*
 
 TPCda_pedestal.cxx - calibration algorithm for TPC pedestal runs
 
 10/06/2007  sylvain.chapeland@cern.ch :  first version - clean skeleton based on DAQ DA case1
+19/10/2007  christian.lippmann@cern.ch :  Possibility to write output to ASCII file
+24/10/2007  christian.lippmann@cern.ch :  Including pedestal calibration for time bins
+23/11/2007  christian.lippmann@cern.ch :  Fix in order to avoid streamer problems in case of
+                                          invalid ROOTSTYS. The famous magic line provided by Rene.
+28/11/2007  christian.lippmann@cern.ch :  TPC mapping file is read from DaqDetDB
 
 contact: marian.ivanov@cern.ch
 
-
 This process reads RAW data from the files provided as command line arguments
 and save results in a file (named from RESULT_FILE define - see below).
 
 */
 
-#define RESULT_FILE "tpcPedestal.root"
-
+#define RESULT_FILE  "tpcPedestal.root"
+#define FILE_ID "pedestals"
+#define MAPPING_FILE "tpcMapping.root"
+#define AliDebugLevel() -1
 
 extern "C" {
 #include <daqDA.h>
 }
 #include "event.h"
 #include "monitor.h"
-#include <stdio.h>
-#include <stdlib.h>
-#include <fstream.h>
+
+#include "stdio.h"
+#include "stdlib.h"
+#include <fstream>
 
 //
 //Root includes
 //
-#include <TFile.h>
-#include <TArrayF.h>
+#include "TFile.h"
+#include "TArrayF.h"
 #include "TROOT.h"
 #include "TPluginManager.h"
 
@@ -44,6 +66,8 @@ extern "C" {
 #include "AliTPCCalPad.h"
 #include "AliMathBase.h"
 #include "TTreeStream.h"
+#include "AliLog.h"
+#include "TSystem.h"
 
 //
 // TPC calibration algorithm includes
@@ -60,22 +84,26 @@ int main(int argc, char **argv) {
   // Main for TPC pedestal detector algorithm
   //
 
-  gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
-                                       "*",
-                                       "TStreamerInfo",
-                                       "RIO",
-                                       "TStreamerInfo()"); 
-  Bool_t timeAnalysis = kTRUE;
+  AliLog::SetClassDebugLevel("AliTPCRawStream",-5);
+  AliLog::SetClassDebugLevel("AliRawReaderDate",-5);
+  AliLog::SetClassDebugLevel("AliTPCAltroMapping",-5);
+  AliLog::SetModuleDebugLevel("RAW",-5);
 
-  int i,status;
-  AliTPCCalibPedestal calibPedestal;           // pedestal and noise calibration
-  calibPedestal.SetTimeAnalysis(timeAnalysis); // pedestal(t) calibration
+  Bool_t timeAnalysis = kTRUE;
 
   if (argc<2) {
     printf("Wrong number of arguments\n");
     return -1;
   }
 
+  /* magic line */
+  gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
+                                       "*",
+                                       "TStreamerInfo",
+                                       "RIO",
+                                       "TStreamerInfo()"); 
+  int i, status;
+
   /* log start of process */
   printf("TPC DA started - %s\n",__FILE__);
 
@@ -86,6 +114,36 @@ int main(int argc, char **argv) {
     return -1;
   }
 
+  AliTPCmapper *mapping = 0;   // The TPC mapping
+   
+  if (!mapping){
+    /* copy locally the mapping file from daq detector config db */
+    status = daqDA_DB_getFile(MAPPING_FILE,"./tpcMapping.root");
+    if (status) {
+      printf("Failed to get mapping file (%s) from DAQdetDB, status=%d\n", MAPPING_FILE, status);
+      printf("Continue anyway ... maybe it works?\n");              // !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+      return -1;   // temporarily uncommented for testing on pcald47 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+    }
+
+    /* open the mapping file and retrieve mapping object */
+    TFile *fileMapping = new TFile(MAPPING_FILE, "read");
+    mapping = (AliTPCmapper*) fileMapping->Get("tpcMapping");
+    delete fileMapping;
+  }
+
+  if (mapping == 0) {
+    printf("Failed to get mapping object from %s.  ...\n", MAPPING_FILE);
+    //return -1;
+  } else {
+    printf("Got mapping object from %s\n", MAPPING_FILE);
+  }
+
+  AliTPCCalibPedestal calibPedestal;                         // pedestal and noise calibration
+  calibPedestal.SetRangeTime(60,940);                        // set time bin range
+  calibPedestal.SetTimeAnalysis(timeAnalysis);               // pedestal(t) calibration
+  if (mapping){
+    calibPedestal.SetAltroMapping(mapping->GetAltroMapping()); // Use altro mapping we got from daqDetDb
+  }
   /* loop over RAW data files */
   int nevents=0;
   for ( i=1; i<argc; i++ ) {
@@ -94,7 +152,7 @@ int main(int argc, char **argv) {
     printf("Processing file %s\n", argv[i]);
     status=monitorSetDataSource( argv[i] );
     if (status!=0) {
-      printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
+      printf("monitorSetDataSource() failed. Error=%s. Exiting ...\n", monitorDecodeError(status));
       return -1;
     }
 
@@ -121,15 +179,15 @@ int main(int argc, char **argv) {
        continue;
 
       /* retry if got no event */
-      if (event==NULL) {
+      if (event==NULL)
        continue;
-      }
 
       nevents++;
 
       //  Pedestal calibration
       AliRawReader *rawReader = new AliRawReaderDate((void*)event);
       calibPedestal.ProcessEvent(rawReader);
+      //calibPedestal.ProcessEventFast(rawReader);   // fast data reader
       delete rawReader;
 
       /* free resources */
@@ -137,17 +195,29 @@ int main(int argc, char **argv) {
     }
   }
 
-  calibPedestal.Analyse(); 
-  calibPedestal.AnalyseTime(nevents); 
-  printf ("%d physics/calibration events processed\n",nevents);
+  //
+  // Analyse pedestals and write them to rootfile
+  //
+
+  calibPedestal.Analyse();
+  calibPedestal.AnalyseTime(nevents);
+  printf ("%d physics/calibration events processed.\n",nevents);
 
   TFile *fileTPC = new TFile(RESULT_FILE, "recreate");
-  calibPedestal.Write("calibPedestal");
+  calibPedestal.Write("tpcCalibPedestal");
   delete fileTPC;
-  printf("Wrote %s\n",RESULT_FILE);
+  printf("Wrote %s.\n",RESULT_FILE);
+
+ /* store the result file on FES */
+   status=daqDA_FES_storeFile(RESULT_FILE,FILE_ID);
+   if (status) {
+     status = -2;
+   }
+
 
   //
-  // Now prepare ASCII files for local ALTRO configuration through DDL
+  // Now prepare ASCII files for local ALTRO configuration through DDL.
   //
 
   ofstream pedfile;
@@ -161,45 +231,47 @@ int main(int argc, char **argv) {
   sprintf(filename,"tpcPedestalMem.data");
   pedmemfile.open(filename);
 
-  TArrayF **timePed = calibPedestal.GetTimePedestals();
-  AliTPCmapper mapping;
+  TArrayF **timePed = calibPedestal.GetTimePedestals();  // pedestal values for each time bin
 
   Int_t ctr_channel = 0;
   Int_t ctr_altro = 0;
   Int_t ctr_pattern = 0;
 
-  pedfile    << 10 << std::endl; // PEDESTALS per channel
-  noisefile  << 11 << std::endl; // NOISE per altro
-  pedmemfile << 12 << std::endl; // PEDESTALs per time bin
+  pedfile    << 10 << std::endl; // mark file to contain PEDESTALS per channel
+  noisefile  << 11 << std::endl; // mark file to contain NOISE per altro
+  pedmemfile << 12 << std::endl; // mark file to contain PEDESTALs per time bin
 
   for ( Int_t roc = 0; roc < 72; roc++ ) {
     if ( !calibPedestal.GetCalRocPedestal(roc) ) continue;
-    Int_t side   = mapping.GetSideFromRoc(roc);
-    Int_t sector = mapping.GetSectorFromRoc(roc);
+    Int_t side   = mapping->GetSideFromRoc(roc);
+    Int_t sector = mapping->GetSectorFromRoc(roc);
     //printf("Analysing ROC %d (side %d, sector %d) ...\n", roc, side, sector);
-    Int_t nru = mapping.IsIROC(roc) ? 2 : 4;
+    Int_t nru = mapping->IsIROC(roc) ? 2 : 4;
     for ( int rcu = 0; rcu < nru; rcu++ ) {
-      Int_t patch = mapping.IsIROC(roc) ? rcu : rcu+2;
+      Int_t patch = mapping->IsIROC(roc) ? rcu : rcu+2;
       for ( int branch = 0; branch < 2; branch++ ) {
-       for ( int fec = 0; fec < mapping.GetNfec(patch, branch); fec++ ) {
+       for ( int fec = 0; fec < mapping->GetNfec(patch, branch); fec++ ) {
          for ( int altro = 0; altro < 8; altro++ ) {
            Float_t rms = 0.;
            Float_t ctr = 0.;
            for ( int channel = 0; channel < 16; channel++ ) {
-             Int_t hwadd = mapping.CodeHWAddress(branch, fec, altro, channel);
-             Int_t row   = mapping.GetPadRow(patch, hwadd);
-             Int_t pad   = mapping.GetPad(patch, hwadd);
-             Float_t ped = calibPedestal.GetCalRocPedestal(roc)->GetValue(row,pad);
+             Int_t hwadd     = mapping->CodeHWAddress(branch, fec, altro, channel);
+             Int_t row       = mapping->GetPadRow(patch, hwadd);        // row in a ROC
+             Int_t globalrow = mapping->GetGlobalPadRow(patch, hwadd);  // row in full sector
+             Int_t pad       = mapping->GetPad(patch, hwadd);
+             Float_t ped     = calibPedestal.GetCalRocPedestal(roc)->GetValue(row,pad);
              // fixed pedestal
              if ( ped > 1.e-10 ) {
-               pedfile << ctr_channel << "\t" << side << "\t" << sector << "\t" << patch << "\t" << hwadd << "\t" << ped << std::endl;
+               pedfile << ctr_channel << "\t" << side << "\t" << sector << "\t" << patch << "\t"
+                       << hwadd << "\t" << ped << std::endl;
                ctr_channel++;
              }
              // pedestal(t)
-             if ( timePed && fabs(timePed[row][pad].GetSum()) > 1e-10 ) {
-               pedmemfile << ctr_pattern << "\t" << side << "\t" << sector << "\t" << patch << "\t" << hwadd;
+             if ( timePed && fabs(timePed[globalrow][pad].GetSum()) > 1e-10 ) {
+               pedmemfile << ctr_pattern << "\t" << side << "\t" << sector << "\t" << patch
+                          << "\t" << hwadd;
                for ( Int_t timebin = 0; timebin < 1024; timebin++ )
-                 pedmemfile << "\t" << timePed[row][pad].At(timebin);
+                 pedmemfile << "\t" << timePed[globalrow][pad].At(timebin);
                pedmemfile << std::endl;
                ctr_pattern++;
              }
@@ -208,9 +280,10 @@ int main(int argc, char **argv) {
              if ( rms2 > 1.e-10 ) { rms += rms2; ctr += 1.; }
            } // end channel for loop
            // noise data (rms) averaged over all channels in this ALTRO.
-           Int_t hwadd = mapping.CodeHWAddress(branch, fec, altro, 0);
+           Int_t hwadd = mapping->CodeHWAddress(branch, fec, altro, 0);
            if ( ctr > 1.e-10 ) {
-             noisefile << ctr_altro << "\t" << side << "\t" << sector << "\t" << patch << "\t" << hwadd << "\t" << rms/ctr << std::endl;
+             noisefile << ctr_altro << "\t" << side << "\t" << sector << "\t" << patch << "\t"
+                       << hwadd << "\t" << rms/ctr << std::endl;
              ctr_altro++;
            }
          } // end altro for loop
@@ -222,8 +295,8 @@ int main(int argc, char **argv) {
   pedfile.close();
   noisefile.close();
   pedmemfile.close();
+  printf("Wrote ASCII files.\n");
 
-  printf("Wrote ASCII files\n");
 
   return status;
 }