]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/MUONTRKPEDda.cxx
Consolidation of AliMUONTrackerHV class
[u/mrichter/AliRoot.git] / MUON / MUONTRKPEDda.cxx
1 /*
2   Contact: Jean-Luc Charvet <jean-luc.charvet@cern.ch>  
3   Link: http://aliceinfo.cern.ch/static/Offline/dimuon/muon_html/README_mchda.html
4   Reference Run: 109302 (station 3 only)
5   Run Type: PEDESTAL
6   DA Type: LDC
7   Number of events needed: 400 events for pedestal run
8   Input Files: mutrkpedvalues and config_ldc-MTRK-S3-0 in path : /afs/cern.ch/user/j/jcharvet/public/DA_validation 
9   Output Files: local dir (not persistent) -> MUONTRKPEDda.ped  FXS -> run<#>_MCH_<ldc>_PEDESTALS
10   Trigger types used:
11 */
12
13 /**************************************************************************
14  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
15  *                                                                        *
16  * Author: The ALICE Off-line Project.                                    *
17  * Contributors are mentioned in the code where appropriate.              *
18  *                                                                        *
19  * Permission to use, copy, modify and distribute this software and its   *
20  * documentation strictly for non-commercial purposes is hereby granted   *
21  * without fee, provided that the above copyright notice appears in all   *
22  * copies and that both the copyright notice and this permission notice   *
23  * appear in the supporting documentation. The authors make no claims     *
24  * about the suitability of this software for any purpose. It is          *
25  * provided "as is" without express or implied warranty.                  *
26  **************************************************************************/
27
28 /* $Id$ */
29
30 /*
31         -------------------------------------------------------------------------
32         2012-02-16 New version: MUONTRKPEDda.cxx,v 1.8
33         -------------------------------------------------------------------------
34
35         Version for MUONTRKPEDda MUON tracking
36         (A. Baldisseri, J.-L. Charvet)
37
38
39  Rem:  AliMUON2DMap stores all channels, even those which are not connected
40  if pedMean == -1, channel not connected to a pad  
41
42 &
43
44 */
45 extern "C" {
46 #include <daqDA.h>
47 }
48
49 #include "event.h"
50 #include "monitor.h"
51
52 #include <Riostream.h>
53 #include <stdio.h>
54 #include <stdlib.h>
55 #include <sstream>
56 #include <math.h> 
57
58 //AliRoot
59 #include "AliMUONRawStreamTrackerHP.h"
60 #include "AliRawReader.h"
61 #include "AliMUONVStore.h"
62 #include "AliMUON2DMap.h"
63 #include "AliMUONCalibParamND.h"
64 #include "AliMpIntPair.h"
65 #include "AliMpConstants.h"
66 #include "AliRawDataErrorLog.h"
67 #include "AliMUONTrackerIO.h"
68 #include "AliLog.h"
69 #include "AliMUONDspHeader.h"
70 #include "AliDAQ.h"
71
72 //ROOT
73 #include "TFile.h"
74 #include "TSystem.h"
75 #include "TTree.h"
76 #include "TH1F.h"
77 #include "TString.h"
78 #include "TStopwatch.h"
79 #include "TMath.h"
80 #include "TTimeStamp.h"
81 #include "TGraphErrors.h"
82 #include "TF1.h"
83 #include "TROOT.h"
84 #include "TPluginManager.h"
85 #include "TFitter.h"
86 #include "TObjString.h"
87 #include "THashTable.h"
88 #include <THashList.h>
89 //
90 //AMORE
91 //
92 #ifdef ALI_AMORE
93 #include <AmoreDA.h>
94 #endif
95
96 #include "AliMUONPedestal.h"
97 #include "AliMUONErrorCounter.h"
98
99  
100 // main routine
101 int main(Int_t argc, const char **argv) 
102 {
103   Int_t status=0, status1=0;
104   TStopwatch timers;
105   timers.Start(kTRUE); 
106
107   // Needed for streamer application
108   gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
109                                         "*",
110                                         "TStreamerInfo",
111                                         "RIO",
112                                         "TStreamerInfo()"); 
113   // needed for Minuit plugin
114   gROOT->GetPluginManager()->AddHandler("ROOT::Math::Minimizer",
115                                         "Minuit",
116                                         "TMinuitMinimizer",
117                                         "Minuit",
118                                         "TMinuitMinimizer(const char*)");
119 //   cout << argv[0];
120  
121   Int_t skipEvents = 0;
122   Int_t maxEvents  = 1000000;
123   Int_t maxDateEvents  = 1000000;
124   Int_t errorDetail  = 1;
125   Int_t checkTokenlost = 0;
126   Int_t flag_histo=1;
127   TString inputFile;
128
129   Int_t  nDateEvents = 0;
130   Int_t  nDateRejEvents = 0;
131   Int_t nGlitchErrors= 0;
132   Int_t nParityErrors= 0;
133   Int_t nPaddingErrors= 0;
134   Int_t nTokenlostErrors= 0;
135   Int_t recoverParityErrors = 1;
136
137   TString logOutputFile;
138
139   Char_t flatFile[256]="";
140   Char_t* detail;
141   TString shuttleFile;
142
143   Int_t nEventsRecovered = 0;
144   Int_t nEvents = 0;
145   UInt_t runNumber   = 0;
146   Int_t nConfig = 1;
147   Int_t nEvthreshold = 100; //below this nb_evt pedestal are not calculated and forced to 4085 (sigma)
148   Int_t nSorting = 1 ; // pedestal sorting (ON by default)
149   Int_t statusDA = 0 ; // DA return code 
150   ofstream filcout;
151
152   // decode the input line
153   for (Int_t i = 1; i < argc; i++) // argument 0 is the executable name
154     {
155       const char* arg = argv[i];
156
157       arg = argv[i];
158       if (arg[0] != '-') 
159         {
160           // If only one argument and no "-" => DA calling from ECS
161           if (argc == 2)
162             {
163         inputFile=argv[i];
164             }
165           continue;
166         }
167       nConfig=0;
168       //prefixLDC = "LDC"
169       switch (arg[1])
170         {
171         case 'f' : 
172           i++;
173       inputFile=argv[i];
174           nConfig=0;
175           break;
176         case 'a' : 
177           i++;
178           shuttleFile = argv[i];
179           break;
180         case 's' :
181           i++; 
182           skipEvents=atoi(argv[i]);
183           break;
184         case 'm' :
185           i++; 
186           sscanf(argv[i],"%d",&maxDateEvents);
187           break;
188         case 'n' :
189           i++; 
190           sscanf(argv[i],"%d",&maxEvents);
191           break;
192         case 'v' :
193           i++; 
194           sscanf(argv[i],"%d",&errorDetail);
195           break;
196         case 't' :
197           i++; 
198           sscanf(argv[i],"%d",&checkTokenlost);
199           break;
200         case 'h' :
201           i++;
202           printf("\n******************* %s usage **********************",argv[0]);
203           printf("\nOnline (called from ECS) : %s <raw data file> (no inline options)\n",argv[0]);
204           printf("\n%s can be used locally only with options (without DiMuon configuration file: nConfig=%d)",argv[0],nConfig);
205           printf("\n%s -options, the available options are :",argv[0]);
206           printf("\n-h help                    (this screen)");
207           printf("\n");
208           printf("\n Input");
209           printf("\n-f <raw data file>         (default = %s)",inputFile.Data()); 
210           printf("\n");
211           printf("\n Output");
212           printf("\n-a <Flat ASCII file>       (default = %s)",shuttleFile.Data()); 
213           printf("\n");
214           printf("\n Options");
215           printf("\n-m <max date events>       (default = %d)",maxDateEvents);
216           printf("\n-s <skip events>           (default = %d)",skipEvents);
217           printf("\n-n <max events>            (default = %d)",maxEvents);
218           printf("\n-v <error detail>          (default = %d : 0=low 1=medium 2=high)",errorDetail);
219           printf("\n-t <token lost check>      (default = %d : 0=no , 1=yes)",checkTokenlost);
220
221           printf("\n\n");
222           exit(-1);
223         default :
224           printf("%s : bad argument %s (please check %s -h)\n",argv[0],argv[i],argv[0]);
225           argc = 2; exit(-1); // exit if error
226         } // end of switch  
227     } // end of for i  
228
229   UShort_t manuId;  
230   UChar_t channelId;
231   UShort_t charge;
232
233   const char* prefixDA = "MUONTRKPEDda"; // program prefix
234   const char* prefixLDC = getenv("DATE_ROLE_NAME"); // LDC name
235   if(prefixLDC == NULL)  prefixLDC ="MCH" ;
236   printf("%s : -------- Begin execution : %s --------  \n",prefixLDC,prefixDA); 
237
238   //Pedestal object
239   AliMUONPedestal* muonPedestal = new AliMUONPedestal();
240   muonPedestal->SetprefixDA(prefixDA);
241   muonPedestal->SetprefixLDC(prefixLDC);
242   muonPedestal->SetStatusDA(statusDA);
243
244   // Output log file initialisations
245   sprintf(flatFile,"%s.log",prefixDA);
246   logOutputFile=flatFile;
247   AliLog::SetStreamOutput(&filcout); // Print details on logfile
248   filcout.open(logOutputFile.Data());
249   filcout<<"//=================================================" << endl;
250   filcout<<"//" << prefixLDC << "       " << prefixDA  << endl;
251   filcout<<"//=================================================" << endl;
252   filcout<<"//  * Date  : " << muonPedestal->GetDate()->AsString("l") << "\n" << endl;
253
254   muonPedestal->SetAlifilcout(&filcout);
255   cout<<prefixLDC << " :  Date: " << muonPedestal->GetDate()->AsString("l") << "\n" << endl;
256
257
258   Char_t dbfile[256]="";
259   // nConfig=1 : Reading configuration (or not) status via "mutrkpedvalues" file located in DetDB
260   if(nConfig)
261     { 
262       Int_t flag_hist, nEvthres,maxEvts;
263       char line[80];
264       sprintf(dbfile,"mutrkpedvalues");
265       status=daqDA_DB_getFile(dbfile,dbfile);
266       if(status) {printf(" !!! Failed  : input file %s is missing, status = %d\n",dbfile,status); return -1; } 
267       ifstream filein(dbfile,ios::in);
268       filein >> line >> nConfig ; cout << "mutrkpedvalues: " << line << nConfig << "  "  ;
269       filein >> line >> nEvthres ; if(nEvthres !=0)nEvthreshold=nEvthres;  cout << line << nEvthreshold << "  " ; 
270       filein >> line >> checkTokenlost ; cout << line << checkTokenlost << "  " ;
271       filein >> line >> flag_histo ;  if(flag_histo !=0)  cout << line << flag_histo << "  " ; 
272       filein >> line >> maxEvts ;  if(maxEvts!=0){maxEvents=maxEvts;  cout << line << maxEvents;}
273       //     filein >> line >> errorDetail ; cout << line << errorDetail << "  " ;
274       //     filein >> line >> nSorting ; cout << line << nSorting << "  " ;
275      cout << endl;
276     }
277   if(!nConfig)  printf("%s : ***  Config= %d: no configuration ascii file is used \n",prefixLDC,nConfig); 
278   muonPedestal->SetconfigDA(nConfig);
279   muonPedestal->SetnEvthreshold(nEvthreshold);
280   muonPedestal->SetnSorting(nSorting);
281
282   // nConfig=1: configuration ascii file config_$DATE_ROLE_NAME read from DetDB
283   if(nConfig)
284     {
285       sprintf(dbfile,"config_%s",getenv("DATE_ROLE_NAME"));
286       status=daqDA_DB_getFile(dbfile,dbfile);
287       if(status) {printf(" !!! Failed  : Configuration file %s is missing, status = %d\n",dbfile,status); return -1; }
288       muonPedestal->LoadConfig(dbfile);  
289     } 
290
291   // Rawdeader, RawStreamHP
292   AliRawReader* rawReader = AliRawReader::Create(inputFile);
293   AliMUONRawStreamTrackerHP* rawStream  = new AliMUONRawStreamTrackerHP(rawReader);    
294 //      rawStream->DisableWarnings();
295   rawStream->EnabbleErrorLogger();
296  
297   switch (errorDetail)
298     {
299     case 0: rawStream->SetLoggingDetailLevel(AliMUONRawStreamTrackerHP::kLowErrorDetail); break;/// Logs minimal information in the error messages.
300     case 1: rawStream->SetLoggingDetailLevel(AliMUONRawStreamTrackerHP::kMediumErrorDetail); break;/// Logs a medium level of detail in the error messages.
301     case 2: rawStream->SetLoggingDetailLevel(AliMUONRawStreamTrackerHP::kHighErrorDetail); break;/// Logs a medium level of detail in the error messages.
302     default: rawStream->SetLoggingDetailLevel(AliMUONRawStreamTrackerHP::kMediumErrorDetail); break;
303     }
304
305   printf("\n%s : Reading data from file %s\n",prefixLDC,inputFile.Data());
306
307   Int_t tabTokenError[20][14];
308   for ( Int_t i=0 ; i<20 ; i++) { for ( Int_t j=0 ; j<14 ; j++) { tabTokenError[i][j]=0;}       }
309
310   while (rawReader->NextEvent())
311     {
312       Int_t eventType = rawReader->GetType();
313       runNumber = rawReader->GetRunNumber();
314       if(nDateEvents==0)  { filcout<<"//  ---->  RUN = " << runNumber << "\n" << endl;}
315       if (nDateEvents >= maxDateEvents) break;
316       if (nEvents >= maxEvents) break;
317       if (nDateEvents>0 &&  nDateEvents % 100 == 0)     
318         cout<< prefixLDC << " :  DATE events = " << nDateEvents << "   Used events = " << nEvents << endl;
319
320       // check shutdown condition 
321       if (daqDA_checkShutdown())  break;
322       //Skip events
323       while (skipEvents)
324         {
325           rawReader->NextEvent();
326           skipEvents--;
327         }
328       nDateEvents++;
329       if (eventType != PHYSICS_EVENT)
330         continue; // for the moment
331
332       //      const char* detail = "";
333       // First lopp over DDL's to find good events
334       // Error counters per event (counters in the decoding lib are for each DDL)
335       Bool_t eventIsErrorMessage = kFALSE;
336       int eventGlitchErrors = 0;
337       int eventParityErrors = 0;
338       int eventPaddingErrors = 0;
339       int eventTokenlostErrors = 0;
340       rawStream->First();
341       do
342         {
343           if (rawStream->IsErrorMessage()) eventIsErrorMessage = kTRUE;
344           eventGlitchErrors += rawStream->GetGlitchErrors();
345           eventParityErrors += rawStream->GetParityErrors();
346           eventPaddingErrors += rawStream->GetPaddingErrors();
347           eventTokenlostErrors += rawStream->GetTokenLostErrors();
348           //      cout << nDateEvents << "    "  << rawStream->GetDDL() << "   "  << eventTokenlostErrors << endl;
349           if (rawStream->GetTokenLostErrors())
350             {
351               nTokenlostErrors++;
352               const AliMUONRawStreamTrackerHP::AliBlockHeader*      blkHeader  = 0x0;
353               const AliMUONRawStreamTrackerHP::AliDspHeader*        dspHeader  = 0x0;
354               Int_t nBlock = rawStream->GetBlockCount();
355               for(Int_t iBlock = 0; iBlock < nBlock ;iBlock++)
356                 {
357                   blkHeader = rawStream->GetBlockHeader(iBlock);
358                   //              printf("Block %d Total length %d\n",iBlock,blkHeader->GetTotalLength());
359                   Int_t nDsp = rawStream->GetDspCount(iBlock);
360                   //              printf("Block %d DSP %d\n",iBlock,nDsp);                
361                   for(Int_t iDsp = 0; iDsp < nDsp ;iDsp++)
362                     {
363                       dspHeader =  blkHeader->GetDspHeader(iDsp);
364                       //                      printf("Dsp %d Add %X\n",iDsp,dspHeader);
365                       if (dspHeader->GetErrorWord())
366                         {
367                           Int_t ddl = rawStream->GetDDL()  ; 
368                           //     Int_t ddl = AliDAQ::DdlID("MUONTRK", rawStream->GetDDL()) - 2560 ; // format 2560 + ddl
369                           Int_t frt = (dspHeader->GetErrorWord() & 0xFFFF0000) >> 16 ; // 4*4bits right shift
370                           tabTokenError[ddl][frt]++;
371                           //     printf(" DDL %d error word %X %d %d\n",ddl,dspHeader->GetErrorWord(),frt,tabTokenError[8][4]);
372                         }
373                       
374                     }
375                 }
376             }
377         } while(rawStream->NextDDL()); 
378
379       AliMUONRawStreamTrackerHP::AliBusPatch* busPatch;
380       if (!eventIsErrorMessage) 
381         {
382           // Good events (no error) -> compute pedestal for all channels
383           rawStream->First(); 
384           nEvents++;
385           muonPedestal->SetAliNCurrentEvents(nEvents);
386           while( (busPatch = (AliMUONRawStreamTrackerHP::AliBusPatch*) rawStream->Next())) 
387             {
388               for(int i = 0; i < busPatch->GetLength(); ++i)
389                 {
390                   busPatch->GetData(i, manuId, channelId, charge);
391                   muonPedestal->MakePed(busPatch->GetBusPatchId(), (Int_t)manuId, (Int_t)channelId, (Int_t)charge);
392                 }
393             }
394         }
395       else
396         {
397           // Events with errors
398           if (recoverParityErrors && eventParityErrors && !eventGlitchErrors && !eventPaddingErrors && !(eventTokenlostErrors && checkTokenlost))
399             {
400               filcout << " ----------- Date Event recovered = " << nDateEvents <<  " ----------------" << endl;
401               // Recover parity errors -> compute pedestal for all good buspatches
402               if ( TEST_SYSTEM_ATTRIBUTE( rawReader->GetAttributes(),
403                                           ATTR_ORBIT_BC )) 
404                 {
405                   filcout <<"Event recovered -> Period:"<<EVENT_ID_GET_PERIOD( rawReader->GetEventId() )
406                               <<" Orbit:"<<EVENT_ID_GET_ORBIT( rawReader->GetEventId() )
407                               <<" BunchCrossing:"<<EVENT_ID_GET_BUNCH_CROSSING( rawReader->GetEventId() )<<endl;                                
408                 } 
409               else 
410                 {
411                   filcout <<"Event recovered -> nbInRun:"<<EVENT_ID_GET_NB_IN_RUN( rawReader->GetEventId() )
412                               <<" burstNb:"<<EVENT_ID_GET_BURST_NB( rawReader->GetEventId() )
413                               <<" nbInBurst:"<<EVENT_ID_GET_NB_IN_BURST( rawReader->GetEventId() )<<endl;
414                 }
415               rawStream->First();
416               nEvents++;
417               muonPedestal->SetAliNCurrentEvents(nEvents);
418               while( (busPatch = (AliMUONRawStreamTrackerHP::AliBusPatch*) rawStream->Next())) 
419                 {
420                   // Check the buspatch -> if error not use it in the pedestal calculation
421                   int errorCount = 0;
422                   for(int i = 0; i < busPatch->GetLength(); ++i)
423                     {
424                       if (!busPatch->IsParityOk(i)) errorCount++;
425                     }
426                   if (!errorCount) 
427                     {
428                       // Good buspatch
429                       for(int i = 0; i < busPatch->GetLength(); ++i)
430                         {
431                           busPatch->GetData(i, manuId, channelId, charge);
432                           muonPedestal->MakePed(busPatch->GetBusPatchId(), (Int_t)manuId, (Int_t)channelId, (Int_t)charge);
433                         }
434                     }
435                   else
436                     {
437                       AliMUONErrorCounter* errorCounter;
438                       // Bad buspatch -> not used (just print)
439                       filcout<<"bpId "<<busPatch->GetBusPatchId()<<" words "<<busPatch->GetLength()
440                                  <<" parity errors "<<errorCount<<endl;
441                       // Number of events where this buspatch is missing
442                       if (!(errorCounter = (AliMUONErrorCounter*) (muonPedestal->GetErrorBuspatchTable()->FindObject(busPatch->GetBusPatchId()))))
443                         {
444                           // New buspatch
445                           errorCounter = new AliMUONErrorCounter(busPatch->GetBusPatchId());
446                           muonPedestal->GetErrorBuspatchTable()->Add(errorCounter);
447                         }
448                       else
449                         {
450                           // Existing buspatch
451                           errorCounter->Increment();
452                         }       
453                       // errorCounter->Print();                                         
454                     } // end of if (!errorCount)
455                 } // end of while( (busPatch = (AliMUONRawStreamTrackerHP ...
456               //              nEvents++;
457               nEventsRecovered++;
458             } //end of if (recoverParityErrors && eventParityErrors && !eventGlitchErrors&& !eventPaddingErrors)
459           else
460             {
461               // Fatal errors reject the event
462               detail = Form(" ----------- Date Event rejected = %d  ----------------",nDateEvents);
463               nDateRejEvents++;
464               filcout << detail << endl;
465               if ( TEST_SYSTEM_ATTRIBUTE( rawReader->GetAttributes(),
466                                           ATTR_ORBIT_BC )) 
467                 {
468                   filcout <<"Event rejected -> Period:"<<EVENT_ID_GET_PERIOD( rawReader->GetEventId() )
469                               <<" Orbit:"<<EVENT_ID_GET_ORBIT( rawReader->GetEventId() )
470                               <<" BunchCrossing:"<<EVENT_ID_GET_BUNCH_CROSSING( rawReader->GetEventId() )<<endl;                                
471                 } 
472               else 
473                 {
474                   filcout <<"Event rejected -> nbInRun:"<<EVENT_ID_GET_NB_IN_RUN( rawReader->GetEventId() )
475                               <<" burstNb:"<<EVENT_ID_GET_BURST_NB( rawReader->GetEventId() )
476                               <<" nbInBurst:"<<EVENT_ID_GET_NB_IN_BURST( rawReader->GetEventId() )<<endl;
477
478                 }
479             } // end of if (!rawStream->GetGlitchErrors() && !rawStream->GetPaddingErrors() ...
480           filcout<<"Number of errors : Glitch "<<eventGlitchErrors
481                      <<" Parity "<<eventParityErrors
482                      <<" Padding "<<eventPaddingErrors
483                      <<" Token lost "<<eventTokenlostErrors<<endl;
484           filcout<<endl;                        
485         } // end of if (!rawStream->IsErrorMessage())
486
487       if (eventGlitchErrors)  nGlitchErrors++;
488       if (eventParityErrors)  nParityErrors++;
489       if (eventPaddingErrors) nPaddingErrors++;
490
491     } // while (rawReader->NextEvent())
492   delete rawReader;
493   delete rawStream;
494
495   sprintf(flatFile,"%s.ped",prefixDA);
496   if(shuttleFile.IsNull())shuttleFile=flatFile;
497   muonPedestal->SetAliNEvents(nEvents);
498   muonPedestal->SetAliRunNumber(runNumber);
499   
500   muonPedestal->Finalize();
501   status = muonPedestal->GetStatusDA()  ; 
502  
503   // writing some counters
504   detail=Form("\n%s : Nb of DATE events           = %d",prefixLDC,nDateEvents) ;                             cout << detail; filcout << detail ;
505   detail=Form("\n%s : Nb of Glitch errors         = %d",prefixLDC,nGlitchErrors) ;                           cout << detail; filcout << detail ;
506   detail=Form("\n%s : Nb of Parity errors         = %d",prefixLDC,nParityErrors) ;                           cout << detail; filcout << detail ;
507   detail=Form("\n%s : Nb of Token lost errors     = %d",prefixLDC,nTokenlostErrors) ;                        cout << detail; filcout << detail ;
508   detail=Form("\n%s : Nb of Rejected DATE events  = %d",prefixLDC,nDateRejEvents) ;                          cout << detail; filcout << detail ;
509   detail=Form("\n%s : Nb of recovered events      = %d",prefixLDC,nEventsRecovered) ;                        cout << detail; filcout << detail ;
510   detail=Form("\n%s : Nb of events without errors = %d",prefixLDC,nEvents-nEventsRecovered) ;                cout << detail; filcout << detail ;
511   detail=Form("\n%s : Nb of used events           = %d (threshold= %d)\n\n",prefixLDC,nEvents,nEvthreshold); cout << detail; filcout << detail ;
512
513   // Writing Token Error table
514   if(nTokenlostErrors)
515     {
516       detail=Form("%s : Warning: Token Lost occurence \n",prefixLDC);
517       printf("%s",detail);
518       filcout <<  detail ;
519       for ( Int_t i=0 ; i<20 ; i++) 
520         { 
521           for ( Int_t j=4 ; j<14 ; j++) 
522             { 
523               if(tabTokenError[i][j]>0)
524                 {
525                   Int_t tab=tabTokenError[i][j];
526                   Int_t frt=j/2-1;
527                   Int_t station = i/4 +1;
528                   if( j % 2 == 0)detail=Form("%s : in DDL= %d (station %d) and FRT%d ( Up ) => %d Token errors (address = 0x%X0000)",prefixLDC,2560+i,station,frt,tab,j);
529                   else detail=Form("%s : in DDL= %d (station %d) and FRT%d (Down) => %d Token errors (address = 0x%X0000)",prefixLDC,2560+i,station,frt,tab,j);
530                   printf("%s\n",detail);
531                   filcout <<  detail << endl;
532                 }
533             }
534         }
535     }
536
537   if (!shuttleFile.IsNull())  
538     {
539       ofstream out(shuttleFile.Data());  
540       muonPedestal->MakeASCIIoutput(out); /// Generate pedestal output file
541       out.close();
542       detail=Form("%s : Pedestal file (to SHUTTLE) : %s\n",prefixLDC,shuttleFile.Data());
543       cout << detail; filcout << detail  ;        
544     }
545   if(flag_histo) /// Generate pedestal histo rootfile
546     {
547       muonPedestal->MakeControlHistos(); 
548       detail=Form("%s : Pedestal Histo file        : %s\n",prefixLDC,muonPedestal->GetHistoFileName());   
549       cout << detail; filcout << detail ; 
550      }       
551   // .log files
552   detail=Form("%s : Output logfile             : %s\n",prefixLDC,logOutputFile.Data());
553   cout << detail; filcout << detail ;        
554
555
556    // Transferring pedestal file to FES  (be sure that env variable DAQDALIB_PATH is set)
557   cout << endl; 
558   status1 = daqDA_FES_storeFile(shuttleFile.Data(),"PEDESTALS");
559   if (status1) { detail=Form("%s: !!! ERROR: Failed to export pedestal file : %s to FES \n",prefixLDC,shuttleFile.Data()); 
560     printf("%s",detail); filcout << detail ; status= -1; }
561   //else { detail=Form("%s : *****  STORE Pedestal FILE in FES : OK ****** \n",prefixLDC); printf("%s",detail); filcout << detail ;}
562
563   // Transferring configuration file to FES  (be sure that env variable DAQDALIB_PATH is set)
564   if(nConfig) 
565     { cout << endl; 
566       status1 = daqDA_FES_storeFile(dbfile,"CONFIG");
567       if (status1) { detail=Form("%s: !!! ERROR: Failed to export configuration file : %s to FES \n",prefixLDC,dbfile); 
568         printf("%s",detail); filcout << detail ; status=-1; }
569       //      else {detail=Form("%s : *****  STORE Configuration FILE in FES : OK  ****** \n",prefixLDC); printf("%s",detail); filcout << detail ;}
570     }
571
572  // Copying files to local DB folder defined by DAQ_DETDB_LOCAL
573   Char_t *dir;
574   unsigned int nLastVersions=50;
575   dir= getenv("DAQ_DETDB_LOCAL");
576   if(dir != NULL)  {
577     unsigned int nLastVersions=50;
578     printf("\n%s : ---  Local DataBase: %s (Max= %d) ---\n",prefixLDC,dir,nLastVersions);
579       if(!shuttleFile.IsNull())status1 = daqDA_localDB_storeFile(shuttleFile.Data(),nLastVersions);
580       if(flag_histo)status1 = daqDA_localDB_storeFile(muonPedestal->GetHistoFileName(),nLastVersions);
581       status1 = daqDA_localDB_storeFile(logOutputFile.Data(),nLastVersions);
582   }
583
584
585     cout << " " << endl; 
586     
587 #ifdef ALI_AMORE
588   //
589   //Send objects to the AMORE DB
590   //
591     ostringstream stringout;
592     muonPedestal->MakeASCIIoutput(stringout);
593     
594     amore::da::AmoreDA amoreDA(amore::da::AmoreDA::kSender);
595     TObjString peddata(stringout.str().c_str());
596     Int_t amoreStatus = amoreDA.Send("Pedestals",&peddata);
597     if ( amoreStatus )
598       {cout << prefixLDC << " :  !!! ERROR: Failed to write Pedestals in the AMORE database : " << amoreStatus << endl ; status=-1 ;}
599     else 
600       cout << prefixLDC << " : amoreDA.Send(Pedestals) ok" << endl;  
601 #else
602     cout << prefixLDC << " : Warning: MCH DA not compiled with AMORE support" << endl;
603 #endif
604     
605   filcout.close();
606
607   if(!status)printf("\n%s : -------- End execution : %s -------- (status= %d) \n",prefixLDC,prefixDA,status);
608   else { printf("\n%s : -------- %s ending in ERROR !!!! -------- (status= %d) \n",prefixLDC,prefixDA,status);}
609   timers.Stop();
610   printf("\n Execution time : R:%7.2fs C:%7.2fs\n",timers.RealTime(), timers.CpuTime());
611   return status;
612 }