]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/ITSSDDGAINda.cxx
Updated version of ITS QA Checker and related modifications (Melinda)
[u/mrichter/AliRoot.git] / ITS / ITSSDDGAINda.cxx
index 24157026420e4f045f73499644028342d630eae5..36aea049d0c9e5eaf946285e46ef3b7678257c86 100644 (file)
@@ -1,3 +1,14 @@
+/*
+- Contact: - prino@to.infn.it
+- Link: - http://www.to.infn.it/~prino/alice/RawData/run11173.date
+- Run Type: - PULSER_RUN
+- DA Type: - LDC
+- Number of events needed: >15
+- Input Files: - SDDbase_step1_ddl*c*_sid*.data
+- Output Files: - SDDbase_ddl*c*_sid*.data
+- Trigger types used: 
+*/
+
 //////////////////////////////////////////////////////////////////////////////
 // Detector Algorithm for analysis of SDD test pulse runs.                  //
 //                                                                          //
@@ -31,11 +42,21 @@ extern "C" {
 #include <TH1F.h>
 #include <TH2F.h>
 #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
 */
@@ -43,9 +64,15 @@ int main(int argc, char **argv) {
 
   int status = 0;
 
+  // line added to solve IO problems
+  gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
+                                        "*",
+                                        "TStreamerInfo",
+                                        "RIO",
+                                        "TStreamerInfo()");
 
   /* log start of process */
-  printf("ITS SDD TP algorithm program started\n");  
+  printf("ITS SDD TEST-PULSE algorithm program started\n");  
 
 
   /* check that we got some arguments = list of files */
@@ -55,26 +82,35 @@ int main(int argc, char **argv) {
   }
 
 
-  Int_t eqOffset = 256;
-  Int_t DDLrange = 24;
-  Int_t maxNEvents=10; // maximum number of events to be analyzed
-  const Int_t nSDDmodules=12;  // temp for test raw data
-  AliITSOnlineSDDTP **tpan=new AliITSOnlineSDDTP*[2*nSDDmodules];
-  TH2F **histo=new TH2F*[2*nSDDmodules];
+  Int_t maxNEvents=15; // maximum number of events to be analyzed
+  const Int_t kTotDDL=24;
+  const Int_t kModPerDDL=12;
+  const Int_t kSides=2;
+  UInt_t amSamplFreq=40;
+  UChar_t cdhAttr=0;
+
+  gSystem->Exec("rm -f  SDDbase_LDC.tar");
 
+  AliITSOnlineSDDTP **tpan=new AliITSOnlineSDDTP*[kTotDDL*kModPerDDL*kSides];
+  TH2F **histo=new TH2F*[kTotDDL*kModPerDDL*kSides];
+  Bool_t isFilled[kTotDDL*kModPerDDL*kSides];
+  Bool_t writtenoutput=kFALSE;
   Char_t hisnam[20];
-  for(Int_t imod=0; imod<nSDDmodules;imod++){
-    for(Int_t isid=0;isid<2;isid++){
-      Int_t index=2*imod+isid;
-      tpan[index]=new AliITSOnlineSDDTP(imod,isid,411.);
-      sprintf(hisnam,"his%03ds%d",imod,isid);
-      histo[index]=new TH2F(hisnam,"",256,-0.5,255.5,256,-0.5,255.5);
+  for(Int_t iddl=0; iddl<kTotDDL;iddl++){
+    for(Int_t imod=0; imod<kModPerDDL;imod++){
+      for(Int_t isid=0;isid<kSides;isid++){
+       Int_t index=kSides*(kModPerDDL*iddl+imod)+isid;
+       tpan[index]=new AliITSOnlineSDDTP(iddl,imod,isid,100.);
+       sprintf(hisnam,"h%02dc%02ds%d",iddl,imod,isid);
+       histo[index]=new TH2F(hisnam,"",256,-0.5,255.5,256,-0.5,255.5);
+       isFilled[index]=0;
+      }
     }
   }
   
   /* report progress */
   daqDA_progressReport(10);
-  Int_t iev=0;
+  Int_t iev=0,iAnalyzedEv=0;
   /* read the data files */
   int n;
   for (n=1;n<argc;n++) {
@@ -108,8 +144,8 @@ int main(int argc, char **argv) {
        break;
       }
 
+      if(iAnalyzedEv>=maxNEvents) break;
       iev++; 
-      if(iev>maxNEvents) break;
       
       /* use event - here, just write event id to result file */
       eventT=event->eventType;
@@ -131,79 +167,114 @@ int main(int argc, char **argv) {
       case PHYSICS_EVENT: // uncomment this line for test raw data
        printf(" event number = %i \n",iev);
        AliRawReader *rawReader = new AliRawReaderDate((void*)event);
-       rawReader->RequireHeader(kFALSE);
-       rawReader->SelectEquipment(17,eqOffset+1,eqOffset+DDLrange);
-
-       Int_t evtyp=0;
-       while(rawReader->ReadHeader()){
-         const UInt_t *subev = rawReader->GetSubEventAttributes();
-         if(subev[0]==0 && subev[1]==0 && subev[2]==0) evtyp=1; 
+       rawReader->Reset();
+       cdhAttr=AliITSRawStreamSDD::ReadBlockAttributes(rawReader);
+       amSamplFreq=AliITSRawStreamSDD::ReadAMSamplFreqFromCDH(cdhAttr);
+       AliITSRawStream* s=AliITSRawStreamSDD::CreateRawStreamSDD(rawReader,cdhAttr);
+       if(!writtenoutput){
+         printf("Use %s raw stream, sampling frequency %d MHz\n",s->ClassName(),amSamplFreq);
+         writtenoutput=kTRUE;
        }
 
-       rawReader->Reset();
-       for(Int_t imod=0; imod<nSDDmodules;imod++){
-         for(Int_t isid=0; isid<2;isid++){
-           Int_t index=2*imod+isid;
-           histo[index]->Reset();
+       for(Int_t iddl=0; iddl<kTotDDL;iddl++){
+         for(Int_t imod=0; imod<kModPerDDL;imod++){
+           for(Int_t isid=0;isid<kSides;isid++){
+             Int_t index=kSides*(kModPerDDL*iddl+imod)+isid;
+             histo[index]->Reset();
+           }
          }
        }
-       AliITSRawStreamSDD s(rawReader);
-       
-       while(s.Next()){
-         Int_t iddl=rawReader->GetDDLID();
-         iddl=0; // temporary for test raw data
-         Int_t isddmod=s.GetModuleNumber(iddl,s.GetCarlosId()); 
-         isddmod-=240;  // to have SDD modules from 0 to 259
-         isddmod=s.GetCarlosId(); // temporary for test raw data
-         if(isddmod<nSDDmodules){ 
-           Int_t index=2*isddmod+s.GetChannel(); 
-           histo[index]->Fill(s.GetCoord2(),s.GetCoord1(),s.GetSignal());
+
+       while(s->Next()){
+         Int_t iDDL=rawReader->GetDDLID();
+         Int_t iCarlos=s->GetCarlosId();
+         if(s->IsCompletedModule()) continue;
+         if(s->IsCompletedDDL()) continue;
+         if(iDDL>=0 && iDDL<kTotDDL){ 
+           Int_t index=kSides*(kModPerDDL*iDDL+iCarlos)+s->GetChannel(); 
+           histo[index]->Fill(s->GetCoord2(),s->GetCoord1(),s->GetSignal());
+           isFilled[index]=1;
          }
        }
+       delete s;
        delete rawReader;
-       for(Int_t imod=0; imod<nSDDmodules;imod++){
-         for(Int_t isid=0; isid<2;isid++){
-           Int_t index=2*imod+isid;
-           tpan[index]->AddEvent(histo[index]);    
+       for(Int_t iddl=0; iddl<kTotDDL;iddl++){
+         for(Int_t imod=0; imod<kModPerDDL;imod++){
+           for(Int_t isid=0;isid<kSides;isid++){
+             Int_t index=kSides*(kModPerDDL*iddl+imod)+isid;
+             if(amSamplFreq==20) tpan[index]->SetLastGoodTB(126);
+             else tpan[index]->SetLastGoodTB(254);
+             if(isFilled[index]) tpan[index]->AddEvent(histo[index]);    
+           }
          }
        }
        
        /* free resources */
+       iAnalyzedEv++;
        free(event);
       }
     }
     
   }
     
-  TFile *fh=new TFile("SDDgainHistos.root","RECREATE");
-  Char_t filnam[100],command[120];
-  for(Int_t imod=0; imod<nSDDmodules;imod++){
-    for(Int_t isid=0; isid<2;isid++){
-      Int_t index=2*imod+isid;
-      tpan[index]->ValidateAnodes();
-      tpan[index]->WriteToASCII();
-      tpan[index]->WriteToROOT(fh);
-      sprintf(filnam,"SDDbase_mod%03d_sid%d.data",imod,isid);
-      sprintf(command,"tar -rf SDDbase_LDC1.tar %s",filnam);
-      gSystem->Exec(command);
-    }  
-  }
-  fh->Close();
-
   /* write report */
-  printf("Run #%s, received %d calibration events\n",getenv("DATE_RUN_NUMBER"),iev);
+  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"),iAnalyzedEv,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++){
+      for(Int_t isid=0;isid<kSides;isid++){
+       Int_t index=kSides*(kModPerDDL*iddl+imod)+isid;
+       if(isFilled[index]){
+         tpan[index]->ValidateAnodes();
+         tpan[index]->WriteToASCII();
+         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);
+       }
+      }
+    }  
+  }
 
 
+  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");
+
+
+#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_LDC1.tar","SDD_Calib");
-
   /* report progress */
   daqDA_progressReport(100);