]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/MUONTRKPEDda.cxx
Coverity fix
[u/mrichter/AliRoot.git] / MUON / MUONTRKPEDda.cxx
index d1ebd6e5c7365621089f800e03b3f0f7c693fe9c..f390e684f43a94580865e0a7f2d955b5446abd47 100644 (file)
@@ -1,13 +1,13 @@
 /*
-Contact: Jean-Luc Charvet <jean-luc.charvet@cea.fr>
-Link: http://aliceinfo.cern.ch/static/Offline/dimuon/muon_html/README_Mchda
-Run Type: PEDESTAL
-       DA Type: LDC
-       Number of events needed: 400 events for pedestal run
-       Input Files: Rawdata file (DATE format)
-       Output Files: local dir (not persistent) -> MUONTRKPEDda_<run#>.ped 
-       FXS -> run<#>_MCH_<ldc>_PEDESTALS
-       Trigger types used:
+  Contact: Jean-Luc Charvet <jean-luc.charvet@cern.ch>  
+  Link: http://aliceinfo.cern.ch/static/Offline/dimuon/muon_html/README_mchda.html
+  Reference Run: 109302 (station 3 only)
+  Run Type: PEDESTAL
+  DA Type: LDC
+  Number of events needed: 400 events for pedestal run
+  Input Files: mutrkpedvalues and config_ldc-MTRK-S3-0 in path : /afs/cern.ch/user/j/jcharvet/public/DA_validation 
+  Output Files: local dir (not persistent) -> MUONTRKPEDda.ped  FXS -> run<#>_MCH_<ldc>_PEDESTALS
+  Trigger types used:
 */
 
 /**************************************************************************
@@ -29,7 +29,7 @@ Run Type: PEDESTAL
 
 /*
        -------------------------------------------------------------------------
-       2009-05-11 New version: MUONTRKPEDda.cxx,v 1.0
+        2010-07-09 New version: MUONTRKPEDda.cxx,v 1.7
        -------------------------------------------------------------------------
 
        Version for MUONTRKPEDda MUON tracking
@@ -39,6 +39,7 @@ Run Type: PEDESTAL
  Rem:  AliMUON2DMap stores all channels, even those which are not connected
  if pedMean == -1, channel not connected to a pad  
 
+&
 
 */
 extern "C" {
@@ -64,6 +65,9 @@ extern "C" {
 #include "AliMpConstants.h"
 #include "AliRawDataErrorLog.h"
 #include "AliMUONTrackerIO.h"
+#include "AliLog.h"
+#include "AliMUONDspHeader.h"
+#include "AliDAQ.h"
 
 //ROOT
 #include "TFile.h"
@@ -92,41 +96,41 @@ extern "C" {
 #include "AliMUONPedestal.h"
 #include "AliMUONErrorCounter.h"
 
-
 // main routine
-int main(Int_t argc, Char_t **argv) 
+int main(Int_t argc, const char **argv) 
 {
-
   Int_t status=0;
   TStopwatch timers;
   timers.Start(kTRUE); 
 
+  const char* prefixDA = "MUONTRKPEDda"; // program prefix
+  printf(" ######## Begin execution : %s ######## \n\n",prefixDA); 
+
   // needed for streamer application
   gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
                                        "*",
                                        "TStreamerInfo",
                                        "RIO",
                                        "TStreamerInfo()"); 
-
   // needed for Minuit plugin
   gROOT->GetPluginManager()->AddHandler("ROOT::Math::Minimizer",
                                        "Minuit",
                                        "TMinuitMinimizer",
                                        "Minuit",
                                        "TMinuitMinimizer(const char*)");
-
-  Char_t prefixDA[256]="MUONTRKPEDda"; // program prefix
 //   cout << argv[0];
  
   Int_t skipEvents = 0;
   Int_t maxEvents  = 1000000;
   Int_t maxDateEvents  = 1000000;
-  Char_t inputFile[256]="";
+  TString inputFile;
 
   Int_t  nDateEvents = 0;
   Int_t nGlitchErrors= 0;
   Int_t nParityErrors= 0;
   Int_t nPaddingErrors= 0;
+  Int_t nTokenlostErrors= 0;
   Int_t recoverParityErrors = 1;
 
   TString logOutputFile;
@@ -137,14 +141,15 @@ int main(Int_t argc, Char_t **argv)
   Int_t nEventsRecovered = 0;
   Int_t nEvents = 0;
   UInt_t runNumber   = 0;
-  Int_t  nChannel    = 0;
+  Int_t nConfig = 1;
+  Int_t nEvthreshold = 100; //below this nb_evt pedestal are not calculated and forced to 4085 (sigma)
+  Int_t nSorting = 0 ; // pedestal sorting (OFF by default)
   ofstream filcout;
-//   Int_t nIndex = -1; 
 
   // decode the input line
   for (Int_t i = 1; i < argc; i++) // argument 0 is the executable name
     {
-      Char_t* arg;
+      const char* arg = argv[i];
 
       arg = argv[i];
       if (arg[0] != '-') 
@@ -152,7 +157,7 @@ int main(Int_t argc, Char_t **argv)
          // If only one argument and no "-" => DA calling from ECS
          if (argc == 2)
            {
-             sprintf(inputFile,argv[i]);
+        inputFile=argv[i];
            }
          continue;
        }
@@ -160,7 +165,8 @@ int main(Int_t argc, Char_t **argv)
        {
        case 'f' : 
          i++;
-         sprintf(inputFile,argv[i]);
+      inputFile=argv[i];
+         nConfig=0;
          break;
        case 'a' : 
          i++;
@@ -178,19 +184,16 @@ int main(Int_t argc, Char_t **argv)
          i++; 
          sscanf(argv[i],"%d",&maxEvents);
          break;
-       case 'p' : 
-         i++;
-         sscanf(argv[i],"%d",&recoverParityErrors);
-         break;
        case 'h' :
          i++;
          printf("\n******************* %s usage **********************",argv[0]);
          printf("\nOnline (called from ECS) : %s <raw data file> (no inline options)\n",argv[0]);
+         printf("\n%s can be used locally only with options (without DiMuon configuration file)",argv[0]);
          printf("\n%s -options, the available options are :",argv[0]);
          printf("\n-h help                    (this screen)");
          printf("\n");
          printf("\n Input");
-         printf("\n-f <raw data file>         (default = %s)",inputFile); 
+         printf("\n-f <raw data file>         (default = %s)",inputFile.Data()); 
          printf("\n");
          printf("\n Output");
          printf("\n-a <Flat ASCII file>       (default = %s)",shuttleFile.Data()); 
@@ -199,7 +202,6 @@ int main(Int_t argc, Char_t **argv)
          printf("\n-m <max date events>       (default = %d)",maxDateEvents);
          printf("\n-s <skip events>           (default = %d)",skipEvents);
          printf("\n-n <max events>            (default = %d)",maxEvents);
-         printf("\n-p <Recover parity errors> (default = %d)",recoverParityErrors);
 
          printf("\n\n");
          exit(-1);
@@ -219,13 +221,52 @@ int main(Int_t argc, Char_t **argv)
   AliMUONPedestal* muonPedestal = new AliMUONPedestal();
   muonPedestal->SetprefixDA(prefixDA);
 
+  Char_t dbfile[256]="";
+  // nConfig=1 : Reading configuration (or not) status via "mutrkpedvalues" file located in DetDB
+  if(nConfig)
+    { 
+//      Int_t maxEvts;
+      sprintf(dbfile,"mutrkpedvalues");
+      status=daqDA_DB_getFile(dbfile,dbfile);
+      if(status) {printf(" !!! Failed  : input file %s is missing, status = %d\n",dbfile,status); return -1; } 
+      ifstream filein(dbfile,ios::in);
+      filein >> nConfig;
+      filein >> nSorting;
+      //      filein >> maxEvts;
+//      if(maxEvts!=0)maxEvents=maxEvts;
+    }
+  else  printf(" ***  Config= %d: no configuration ascii file is used \n",nConfig); 
+  muonPedestal->SetconfigDA(nConfig);
+  muonPedestal->SetnEvthreshold(nEvthreshold);
+  muonPedestal->SetnSorting(nSorting);
+
+  // nConfig=1: configuration ascii file config_$DATE_ROLE_NAME read from DetDB
+  if(nConfig)
+    {
+      sprintf(dbfile,"config_%s",getenv("DATE_ROLE_NAME"));
+      status=daqDA_DB_getFile(dbfile,dbfile);
+      if(status) {printf(" !!! Failed  : Configuration file %s is missing, status = %d\n",dbfile,status); return -1; }
+      //      else printf(" *** Copy ascii config file: %s from DetDB to working directory and reading ...*** \n",dbfile);
+      muonPedestal->LoadConfig(dbfile);  
+    } 
+
   // Rawdeader, RawStreamHP
   AliRawReader* rawReader = AliRawReader::Create(inputFile);
   AliMUONRawStreamTrackerHP* rawStream  = new AliMUONRawStreamTrackerHP(rawReader);    
-  rawStream->DisableWarnings();
+//     rawStream->DisableWarnings();
   rawStream->EnabbleErrorLogger();
+  //
+  // kLowErrorDetail,     /// Logs minimal information in the error messages.
+  // kMediumErrorDetail,  /// Logs a medium level of detail in the error messages.
+  // kHighErrorDetail     /// Logs maximum information in the error messages.
+  //  rawStream->SetLoggingDetailLevel(AliMUONRawStreamTrackerHP::kLowErrorDetail);
+     rawStream->SetLoggingDetailLevel(AliMUONRawStreamTrackerHP::kMediumErrorDetail);
+  //   rawStream->SetLoggingDetailLevel(AliMUONRawStreamTrackerHP::kHighErrorDetail);
 
-  cout << "\n" << prefixDA << " : Reading data from file " << inputFile  << endl;
+  printf("\n %s : Reading data from file %s\n",prefixDA,inputFile.Data());
+
+  Int_t tabTokenError[20][14];
+  for ( Int_t i=0 ; i<20 ; i++) { for ( Int_t j=0 ; j<14 ; j++) { tabTokenError[i][j]=0;}      }
 
   while (rawReader->NextEvent())
     {
@@ -237,23 +278,21 @@ int main(Int_t argc, Char_t **argv)
       // check shutdown condition 
       if (daqDA_checkShutdown()) 
        break;
-
       //Skip events
       while (skipEvents)
        {
          rawReader->NextEvent();
          skipEvents--;
        }
-
       Int_t eventType = rawReader->GetType();
       runNumber = rawReader->GetRunNumber();
 
       // Output log file initialisations
       if(nDateEvents==0)
        {
-         sprintf(flatFile,"%s_%d.log",prefixDA,runNumber);
+         sprintf(flatFile,"%s.log",prefixDA);
          logOutputFile=flatFile;
-
+               AliLog::SetStreamOutput(&filcout); // Print details on logfile
          filcout.open(logOutputFile.Data());
          filcout<<"//=================================================" << endl;
          filcout<<"//       " << prefixDA << " for run = " << runNumber << endl;
@@ -270,12 +309,14 @@ int main(Int_t argc, Char_t **argv)
       if (eventType != PHYSICS_EVENT)
        continue; // for the moment
 
+      const char* detail = "";
       // First lopp over DDL's to find good events
       // Error counters per event (counters in the decoding lib are for each DDL)
       Bool_t eventIsErrorMessage = kFALSE;
       int eventGlitchErrors = 0;
       int eventParityErrors = 0;
       int eventPaddingErrors = 0;
+      int eventTokenlostErrors = 0;
       rawStream->First();
       do
        {
@@ -283,6 +324,35 @@ int main(Int_t argc, Char_t **argv)
          eventGlitchErrors += rawStream->GetGlitchErrors();
          eventParityErrors += rawStream->GetParityErrors();
          eventPaddingErrors += rawStream->GetPaddingErrors();
+         eventTokenlostErrors += rawStream->GetTokenLostErrors();
+         if (rawStream->GetTokenLostErrors())
+           {
+             nTokenlostErrors++;
+             const AliMUONRawStreamTrackerHP::AliBlockHeader*      blkHeader  = 0x0;
+             const AliMUONRawStreamTrackerHP::AliDspHeader*        dspHeader  = 0x0;
+             Int_t nBlock = rawStream->GetBlockCount();
+             for(Int_t iBlock = 0; iBlock < nBlock ;iBlock++)
+               {
+                 blkHeader = rawStream->GetBlockHeader(iBlock);
+                 //              printf("Block %d Total length %d\n",iBlock,blkHeader->GetTotalLength());
+                 Int_t nDsp = rawStream->GetDspCount(iBlock);
+                 //              printf("Block %d DSP %d\n",iBlock,nDsp);                
+                 for(Int_t iDsp = 0; iDsp < nDsp ;iDsp++)
+                   {
+                     dspHeader =  blkHeader->GetDspHeader(iDsp);
+                     //                      printf("Dsp %d Add %X\n",iDsp,dspHeader);
+                     if (dspHeader->GetErrorWord())
+                       {
+                         Int_t ddl = rawStream->GetDDL()  ; 
+                         //     Int_t ddl = AliDAQ::DdlID("MUONTRK", rawStream->GetDDL()) - 2560 ; // format 2560 + ddl
+                         Int_t frt = (dspHeader->GetErrorWord() & 0xFFFF0000) >> 16 ; // 4*4bits right shift
+                         tabTokenError[ddl][frt]++;
+                         //     printf(" DDL %d error word %X %d %d\n",ddl,dspHeader->GetErrorWord(),frt,tabTokenError[8][4]);
+                       }
+                     
+                   }
+               }
+           }
        } while(rawStream->NextDDL()); 
 
       AliMUONRawStreamTrackerHP::AliBusPatch* busPatch;
@@ -290,22 +360,23 @@ int main(Int_t argc, Char_t **argv)
        {
          // Good events (no error) -> compute pedestal for all channels
          rawStream->First(); 
+         nEvents++;
+         muonPedestal->SetAliNCurrentEvents(nEvents);
          while( (busPatch = (AliMUONRawStreamTrackerHP::AliBusPatch*) rawStream->Next())) 
            {
              for(int i = 0; i < busPatch->GetLength(); ++i)
                {
-                 if (nEvents == 0) nChannel++;
                  busPatch->GetData(i, manuId, channelId, charge);
                  muonPedestal->MakePed(busPatch->GetBusPatchId(), (Int_t)manuId, (Int_t)channelId, (Int_t)charge);
                }
            }
-         nEvents++;
        }
       else
        {
          // Events with errors
          if (recoverParityErrors && eventParityErrors && !eventGlitchErrors&& !eventPaddingErrors)
            {
+             filcout << " ----------- Date Event recovered = " << nDateEvents <<  " ----------------" << endl;
              // Recover parity errors -> compute pedestal for all good buspatches
              if ( TEST_SYSTEM_ATTRIBUTE( rawReader->GetAttributes(),
                                          ATTR_ORBIT_BC )) 
@@ -321,6 +392,8 @@ int main(Int_t argc, Char_t **argv)
                              <<" nbInBurst:"<<EVENT_ID_GET_NB_IN_BURST( rawReader->GetEventId() )<<endl;
                }
              rawStream->First();
+             nEvents++;
+             muonPedestal->SetAliNCurrentEvents(nEvents);
              while( (busPatch = (AliMUONRawStreamTrackerHP::AliBusPatch*) rawStream->Next())) 
                {
                  // Check the buspatch -> if error not use it in the pedestal calculation
@@ -334,26 +407,21 @@ int main(Int_t argc, Char_t **argv)
                      // Good buspatch
                      for(int i = 0; i < busPatch->GetLength(); ++i)
                        {
-                         if (nEvents == 0) nChannel++;
                          busPatch->GetData(i, manuId, channelId, charge);
-                         // if (busPatch->GetBusPatchId()==1719 && manuId == 1 && channelId == 0) cout <<"Recovered charge "<<charge<<endl;
                          muonPedestal->MakePed(busPatch->GetBusPatchId(), (Int_t)manuId, (Int_t)channelId, (Int_t)charge);
                        }
                    }
                  else
                    {
-                     char bpname[256];
                      AliMUONErrorCounter* errorCounter;
                      // Bad buspatch -> not used (just print)
                      filcout<<"bpId "<<busPatch->GetBusPatchId()<<" words "<<busPatch->GetLength()
                                 <<" parity errors "<<errorCount<<endl;
                      // Number of events where this buspatch is missing
-                     sprintf(bpname,"bp%d",busPatch->GetBusPatchId());                                         
-                     if (!(errorCounter = (AliMUONErrorCounter*) (muonPedestal->GetErrorBuspatchTable()->FindObject(bpname))))
+                     if (!(errorCounter = (AliMUONErrorCounter*) (muonPedestal->GetErrorBuspatchTable()->FindObject(busPatch->GetBusPatchId()))))
                        {
                          // New buspatch
                          errorCounter = new AliMUONErrorCounter(busPatch->GetBusPatchId());
-                         errorCounter->SetName(bpname);
                          muonPedestal->GetErrorBuspatchTable()->Add(errorCounter);
                        }
                      else
@@ -364,12 +432,14 @@ int main(Int_t argc, Char_t **argv)
                      // errorCounter->Print();                                         
                    } // end of if (!errorCount)
                } // end of while( (busPatch = (AliMUONRawStreamTrackerHP ...
-             nEvents++;
+             //              nEvents++;
              nEventsRecovered++;
            } //end of if (recoverParityErrors && eventParityErrors && !eventGlitchErrors&& !eventPaddingErrors)
          else
            {
              // Fatal errors reject the event
+             detail = Form(" ----------- Date Event rejected = %d  ----------------",nDateEvents);
+             filcout << detail << endl;
              if ( TEST_SYSTEM_ATTRIBUTE( rawReader->GetAttributes(),
                                          ATTR_ORBIT_BC )) 
                {
@@ -387,31 +457,60 @@ int main(Int_t argc, Char_t **argv)
            } // end of if (!rawStream->GetGlitchErrors() && !rawStream->GetPaddingErrors() ...
          filcout<<"Number of errors : Glitch "<<eventGlitchErrors
                     <<" Parity "<<eventParityErrors
-                    <<" Padding "<<eventPaddingErrors<<endl;
+                    <<" Padding "<<eventPaddingErrors
+                    <<" Token lost "<<eventTokenlostErrors<<endl;
          filcout<<endl;                        
        } // end of if (!rawStream->IsErrorMessage())
 
       if (eventGlitchErrors)  nGlitchErrors++;
       if (eventParityErrors)  nParityErrors++;
       if (eventPaddingErrors) nPaddingErrors++;
+      //      if (eventTokenlostErrors) nTokenlostErrors++;
+      //      muonPedestal->SetAliNCurrentEvents(nEvents);
 
     } // while (rawReader->NextEvent())
   delete rawReader;
   delete rawStream;
 
-  sprintf(flatFile,"%s_%d.ped",prefixDA,runNumber);
+  sprintf(flatFile,"%s.ped",prefixDA);
   if(shuttleFile.IsNull())shuttleFile=flatFile;
   muonPedestal->SetAliNEvents(nEvents);
   muonPedestal->SetAliRunNumber(runNumber);
-  muonPedestal->SetAliNChannel(nChannel);
-  muonPedestal->MakePedStore(shuttleFile);
+  
+  muonPedestal->Finalize();  
+  muonPedestal->MakeControlHistos();  
+  if (!shuttleFile.IsNull())  
+  {
+    ofstream out(shuttleFile.Data());  
+    muonPedestal->MakeASCIIoutput(out);
+    out.close();
+#ifdef ALI_AMORE
+  //
+  //Send objects to the AMORE DB
+  //
+    ostringstream stringout;
+    muonPedestal->MakeASCIIoutput(stringout);
+    
+    amore::da::AmoreDA amoreDA(amore::da::AmoreDA::kSender);
+    TObjString peddata(stringout.str().c_str());
+    Int_t amoreStatus = amoreDA.Send("Pedestals",&peddata);
+    if ( amoreStatus )
+      cout << "Warning: Failed to write Pedestals in the AMORE database : " << amoreStatus << endl;
+    else 
+      cout << "amoreDA.Send(Pedestals) ok" << endl;  
+#else
+    cout << "Warning: MCH DA not compiled with AMORE support" << endl;
+#endif
+    
+  }
 
   // writing some counters
   cout << endl;
   cout << prefixDA << " : Nb of DATE events           = " << nDateEvents    << endl;
   cout << prefixDA << " : Nb of Glitch errors         = "   << nGlitchErrors  << endl;
   cout << prefixDA << " : Nb of Parity errors         = "   << nParityErrors  << endl;
-  cout << prefixDA << " : Nb of Padding errors        = "   << nPaddingErrors << endl;         
+  cout << prefixDA << " : Nb of Padding errors        = "   << nPaddingErrors << endl; 
+  cout << prefixDA << " : Nb of Token lost errors     = "   << nTokenlostErrors << endl;
   cout << prefixDA << " : Nb of events recovered      = "   << nEventsRecovered<< endl;
   cout << prefixDA << " : Nb of events without errors = "   << nEvents-nEventsRecovered<< endl;
   cout << prefixDA << " : Nb of events used           = "   << nEvents        << endl;
@@ -421,48 +520,74 @@ int main(Int_t argc, Char_t **argv)
   filcout << prefixDA << " : Nb of Glitch errors         = "   << nGlitchErrors << endl;
   filcout << prefixDA << " : Nb of Parity errors         = "   << nParityErrors << endl;
   filcout << prefixDA << " : Nb of Padding errors        = "   << nPaddingErrors << endl;
+  filcout << prefixDA << " : Nb of Token lost errors     = "   << nTokenlostErrors << endl;
   filcout << prefixDA << " : Nb of events recovered      = "   << nEventsRecovered<< endl;     
   filcout << prefixDA << " : Nb of events without errors = "   << nEvents-nEventsRecovered<< endl;
   filcout << prefixDA << " : Nb of events used           = "   << nEvents        << endl;
 
-
-  // Copying files to local DB folder defined by DAQ_DETDB_LOCAL
-  Char_t *dir;
-  dir= getenv("DAQ_DETDB_LOCAL");
-  unsigned int nLastVersions = 2;
-  cout << "\n *** Output files stored locally in " << dir << " (nb of previous versions = " << nLastVersions << ") ***" << endl;
-  filcout << "\n *** Output files stored locally in " << dir << " (nb of previous versions = " << nLastVersions << ") ***" << endl;
-
-  status = daqDA_localDB_storeFile(logOutputFile.Data(),nLastVersions);
-  status = daqDA_localDB_storeFile(muonPedestal->GetHistoFileName(),nLastVersions);
-  status = daqDA_localDB_storeFile(shuttleFile.Data(),nLastVersions);
-
   // ouput files
   cout << endl;
   cout << prefixDA << " : Output logfile         : " << logOutputFile  << endl;
-  cout << prefixDA << " : Gain Histo file        : " << muonPedestal->GetHistoFileName() << endl;
-  cout << prefixDA << " : Gain file (to SHUTTLE) : " << shuttleFile << endl;   
+  cout << prefixDA << " : Pedestal Histo file    : " << muonPedestal->GetHistoFileName() << endl;
+  cout << prefixDA << " : Ped. file (to SHUTTLE) : " << shuttleFile << endl;   
 
-  cout << endl;
-  filcout << prefixDA << " : Output logfile         : " << logOutputFile  << endl;
-  filcout << prefixDA << " : Gain Histo file        : " << muonPedestal->GetHistoFileName() << endl;
-  filcout << prefixDA << " : Gain file (to SHUTTLE) : " << shuttleFile << endl;   
+  // Writing Token Error table
+  if(nTokenlostErrors)
+    {
+      char* detail=Form("\nWarning: Token Lost occurence \n");
+      printf("%s",detail);
+      filcout <<  detail ;
+      for ( Int_t i=0 ; i<20 ; i++) 
+       { 
+         for ( Int_t j=4 ; j<14 ; j++) 
+           { 
+             if(tabTokenError[i][j]>0)
+               {
+                 Int_t tab=tabTokenError[i][j];
+                 Int_t frt=j/2-1;
+                 Int_t station = i/4 +1;
+                 if( j % 2 == 0)detail=Form(" in DDL= %d (station %d) and FRT%d ( Up ) => %d Token errors (address = 0x%X0000)",2560+i,station,frt,tab,j);
+                 else detail=Form(" in DDL= %d (station %d) and FRT%d (Down) => %d Token errors (address = 0x%X0000)",2560+i,station,frt,tab,j);
+                 printf("%s\n",detail);
+                 filcout <<  detail << endl;
+               }
+           }
+       }
+    }
 
+  filcout << endl;
+  filcout << prefixDA << " : Output logfile         : " << logOutputFile  << endl;
+  filcout << prefixDA << " : Pedestal Histo file    : " << muonPedestal->GetHistoFileName() << endl;
+  filcout << prefixDA << " : Ped. file (to SHUTTLE) : " << shuttleFile << endl;   
 
-  // Transferring to OCDB via the SHUTTLE
-  printf("\n *****  STORE FILE in FES ****** \n");
+ // Copying files to local DB folder defined by DAQ_DETDB_LOCAL
+  Char_t *dir;
+  dir= getenv("DAQ_DETDB_LOCAL");
+  unsigned int nLastVersions=50;
+  cout << "\n ***  Local DataBase: " << dir << " (Max= " << nLastVersions << ") ***" << endl;
+  status = daqDA_localDB_storeFile(muonPedestal->GetHistoFileName(),nLastVersions);
+  if(status)printf(" Store file : %s   status = %d\n",muonPedestal->GetHistoFileName(),status);
+  status = daqDA_localDB_storeFile(shuttleFile.Data(),nLastVersions);
+  if(status)printf(" Store file : %s   status = %d\n",shuttleFile.Data(),status);
+  status = daqDA_localDB_storeFile(logOutputFile.Data(),nLastVersions);
+  if(status)printf(" Store file : %s   status = %d\n",logOutputFile.Data(),status);
 
-  // be sure that env variable DAQDALIB_PATH is set in script file
-  //       gSystem->Setenv("DAQDALIB_PATH", "$DATE_SITE/infoLogger");
+  filcout.close();
 
+  // Transferring to FES  (be sure that env variable DAQDALIB_PATH is set)
+  printf("\n *****  STORE Pedestal FILE in FES ****** \n");
   status = daqDA_FES_storeFile(shuttleFile.Data(),"PEDESTALS");
-  if (status) 
-    {
-      printf(" Failed to export file : %d\n",status);
-    }
-  else printf(" %s successfully exported to FES  \n",shuttleFile.Data());
+  if (status) { printf(" !!! Failed to export file : %s , status = %d\n",shuttleFile.Data(),status); return -1; }
+  //  else printf(" %s successfully exported to FES  \n",shuttleFile.Data());
 
-  filcout.close();
+  // Transferring to FES  (be sure that env variable DAQDALIB_PATH is set)
+  printf("\n *****  STORE Configuration FILE in FES ****** \n");
+  status = daqDA_FES_storeFile(dbfile,"CONFIG");
+  if (status) { printf(" !!! Failed to export file : %s , status = %d\n",dbfile,status); return -1; }
+  //  else printf(" %s successfully exported to FES  \n",dbfile);
+
+
+  printf("\n ######## End execution : %s ######## \n",prefixDA); 
   timers.Stop();
   printf("\nExecution time : R:%7.2fs C:%7.2fs\n", timers.RealTime(), timers.CpuTime());
   return status;