]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/ITSSDDGAINda.cxx
Small data block AliHLTTPCDataCompressionDescriptor with general description of the...
[u/mrichter/AliRoot.git] / ITS / ITSSDDGAINda.cxx
index 428af6181445fa4aab0c36042d5a9ae4874aecdd..279f07c8a8005c44d1ad3767e63cc3c153d858bc 100644 (file)
@@ -1,10 +1,10 @@
 /*
 - Contact: - prino@to.infn.it
-- Link: - http://www.to.infn.it/~prino/alice/RawData/run11173.date
+- Link: - alien:///alice/data/2009/LHC09c_SDD/000079095/raw/09000079095024.10.root
 - Run Type: - PULSER_RUN
 - DA Type: - LDC
-- Number of events needed: 100
-- Input Files: - SDDbase_step1_ddl*c*_sid*.data
+- Number of events needed: >15
+- Input Files: - SDDbase_step1_ddl*c*_sid*.data (output of previous PEDESTAL run)
 - Output Files: - SDDbase_ddl*c*_sid*.data
 - Trigger types used: 
 */
@@ -44,17 +44,24 @@ extern "C" {
 #include <TSystem.h>
 #include <TROOT.h>
 #include <TPluginManager.h>
+#include <TObjArray.h>
+#include <TObjString.h>
+#include <TDatime.h>
 
 // AliRoot includes
 #include "AliRawReaderDate.h"
 #include "AliITSOnlineSDDTP.h"
 #include "AliITSRawStreamSDD.h"
 #include "AliITSRawStreamSDDCompressed.h"
+
+#ifdef ALI_AMORE
+#include <AmoreDA.h>
+#endif
 /* Main routine
       Arguments: list of DATE raw data files
 */
 int main(int argc, char **argv) {
-
+  // main -  Arguments: list of DATE raw data files
   int status = 0;
 
   // line added to solve IO problems
@@ -103,7 +110,12 @@ int main(int argc, char **argv) {
   
   /* report progress */
   daqDA_progressReport(10);
-  Int_t iev=0,iAnalyzedEv=0;
+
+  Int_t iev=0;
+  Int_t ievPul=0;
+  Int_t ievUsed=0;
+  Int_t nEvToBeSkipped=5;
+
   /* read the data files */
   int n;
   for (n=1;n<argc;n++) {
@@ -137,7 +149,6 @@ int main(int argc, char **argv) {
        break;
       }
 
-      if(iAnalyzedEv>=maxNEvents) break;
       iev++; 
       
       /* use event - here, just write event id to result file */
@@ -158,7 +169,15 @@ int main(int argc, char **argv) {
       case CALIBRATION_EVENT:
        break;  // uncomment this line for test raw data
       case PHYSICS_EVENT: // uncomment this line for test raw data
-       printf(" event number = %i \n",iev);
+       printf(" Event number = %i ",iev);
+       ievPul++;
+       if(ievPul<=nEvToBeSkipped){
+         printf(" -> SKIP\n");
+         break;
+       }
+       printf("  -> Analyze\n");
+       ievUsed++;
+
        AliRawReader *rawReader = new AliRawReaderDate((void*)event);
        rawReader->Reset();
        cdhAttr=AliITSRawStreamSDD::ReadBlockAttributes(rawReader);
@@ -203,14 +222,23 @@ int main(int argc, char **argv) {
        }
        
        /* free resources */
-       iAnalyzedEv++;
        free(event);
       }
-    }
-    
+      if(ievUsed>=maxNEvents) break;
+    }    
   }
     
-  TFile *fh=new TFile("SDDgainHistos.root","RECREATE");
+  /* write report */
+  TDatime time;
+  TObjString timeinfo(Form("%02d%02d%02d%02d%02d%02d",time.GetYear()-2000,time.GetMonth(),time.GetDay(),time.GetHour(),time.GetMinute(),time.GetSecond()));
+  printf("Run #%s, received %d calibration events, time %s\n",getenv("DATE_RUN_NUMBER"),ievUsed,timeinfo.GetString().Data());
+
+  /* report progress */
+  daqDA_progressReport(90);
+
+  TObjArray* gainHistos=new TObjArray();
+  TObjArray* statusHistos=new TObjArray();
+  
   Char_t filnam[100],command[120];
   for(Int_t iddl=0; iddl<kTotDDL;iddl++){
     for(Int_t imod=0; imod<kModPerDDL;imod++){
@@ -219,7 +247,8 @@ int main(int argc, char **argv) {
        if(isFilled[index]){
          tpan[index]->ValidateAnodes();
          tpan[index]->WriteToASCII();
-         tpan[index]->WriteToROOT(fh);
+         gainHistos->AddLast(tpan[index]->GetGainAnodeHisto());
+         statusHistos->AddLast(tpan[index]->GetStatusAnodeHisto());
          sprintf(filnam,"SDDbase_ddl%02dc%02d_sid%d.data",iddl,imod,isid);
          sprintf(command,"tar -rf SDDbase_LDC.tar %s",filnam);
          gSystem->Exec(command);
@@ -227,29 +256,36 @@ int main(int argc, char **argv) {
       }
     }  
   }
-  fh->Close();
+
 
   FILE *conffil=fopen("fee.conf","w");
   fprintf(conffil,"%d\n",amSamplFreq);
   fprintf(conffil,"%02X\n",cdhAttr);
   fclose(conffil);
   gSystem->Exec("tar -rf SDDbase_LDC.tar fee.conf");
+  status=daqDA_FES_storeFile("./SDDbase_LDC.tar","SDD_Calib");
 
 
-  /* write report */
-  printf("Run #%s, received %d calibration events\n",getenv("DATE_RUN_NUMBER"),iAnalyzedEv);
-
-  /* report progress */
-  daqDA_progressReport(90);
-
-
-
+#ifdef ALI_AMORE
+  amore::da::AmoreDA amoreDA(amore::da::AmoreDA::kSender);
+  Int_t statusamore =0;
+  statusamore += amoreDA.Send("TimeInfoPulser",&timeinfo);
+  statusamore += amoreDA.Send("Gain",gainHistos);
+  if ( statusamore )
+    printf("Warning: Failed to write Arrays in the AMORE database\n");
+  else 
+    printf("amoreDA.Send() OK\n");
+#else
+  printf("Warning: SDDGAIN DA not compiled with AMORE support\n");
+#endif
+    
+  TFile *fh=new TFile("SDDgainHistos.root","RECREATE");
+  gainHistos->Write();
+  statusHistos->Write();
   fh->Close();
 
 
-
-  status=daqDA_FES_storeFile("./SDDbase_LDC.tar","SDD_Calib");
-
   /* report progress */
   daqDA_progressReport(100);