]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - VZERO/VZEROda.cxx
Pedestal calculation improved
[u/mrichter/AliRoot.git] / VZERO / VZEROda.cxx
index 3a147eeeed99e64cc0be47dfa22181c7c3a47b24..6cdb4a20a10fb3bf6cb9d2d79884e385e2b649e8 100755 (executable)
@@ -1,15 +1,30 @@
-/********************************************************************************
-*                                                                               *
-* VZERO Detector Algorithm used for extracting calibration parameters           *
-*                                                                               *
-* This program reads the DDL data file passed as argument using the monitoring  *
-* library.                                                                      *
-* It computes calibration parameters, populates local "./V0_Ped_Width_Gain.dat" *           
-* file and exports it to the FES                                                *
-*                                                                               *
-* The program reports about its processing progress.                            *
-*                                                                               *
-*********************************************************************************/
+/*********************************************************************************
+- Contact:    Brigitte Cheynis     b.cheynis@ipnl.in2p3.fr
+- Link:       http
+- Raw data test file :          
+- Reference run number :             
+- Run Type:   PHYSICS
+- DA Type:    MON
+- Number of events needed: >=500
+- Input Files:  argument list
+- Output Files: local files  VZERO_Histos.root, V0_Ped_Width_Gain.dat
+                FXS file     V0_Ped_Width_Gain.dat
+- Trigger types used: PHYSICS_EVENT
+**********************************************************************************/
+
+/**********************************************************************************
+*                                                                                 *
+* VZERO Detector Algorithm used for extracting calibration parameters             *
+*                                                                                 *
+* This program connects to the DAQ data source passed as argument.                *
+* It computes calibration parameters, populates local "./V0_Ped_Width_Gain.dat"   *            
+* file and exports it to the FES.                                                 *
+* The program exits when being asked to shut down (daqDA_checkshutdown)           *
+* or on End of Run event.                                                         *
+* We have 128 channels instead of 64 as expected for V0 due to the two sets of    *
+* charge integrators which are used by the FEE ...                                *
+*                                                                                 *
+***********************************************************************************/
 
 // DATE
 #include "event.h"
 #include <stdlib.h>
 
 //ROOT
-
+#include "TROOT.h"
+#include "TPluginManager.h"
 #include <TFile.h>
 #include <TH1F.h>
 #include <TMath.h>
 
-
-/* Main routine --- Arguments: list of DATE raw data files */
+/* Main routine --- Arguments: monitoring data source */
       
 int main(int argc, char **argv) {
 
+/* magic line from Cvetan */
+  gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
+                    "*",
+                    "TStreamerInfo",
+                    "RIO",
+                    "TStreamerInfo()");
   int status;
+  if (argc!=2) {
+     printf("Wrong number of arguments\n");
+     return -1;
+  }
+  
+  Double_t ADCmean[128];
+  Double_t ADCsigma[128];
+  Double_t PEDmean[128];
+  Double_t PEDsigma[128];
+     
+//___________________________________________________
+// Get cuts from V00DA.config file
 
-  printf(" argc = %d, argv = %s \n",argc, &(**argv));
-
-  Int_t    kHighCut = 50; // high cut on pedestal distribution - to be tuned
-  Int_t    kLowCut  = 30; // low cut on signal distribution - to be tuned
-  Double_t ADCmean[64];
-  Double_t PEDmean[64];
-  Double_t PEDsigma[64];
+  Int_t    kLowCut;     // = 60;   low cut on signal distribution - to be tuned
+  Int_t    kHighCut;    // = 50;   high cut on pedestal distribution - to be tuned
   
+  status = daqDA_DB_getFile("V00DA.config","./V00DA.config");
+  if (status) {
+      printf("Failed to get config file (V00DA.config) from DAQdetDB, status=%d\n", status);
+      return -1;   
+  }
+  /* open the config file and retrieve cuts */
+  FILE *fpConfig = fopen("V00DA.config","r");
+  fscanf(fpConfig,"%d %d",&kLowCut,&kHighCut);
+  fclose(fpConfig);
+  
+  printf("LowCut on signal = %d ; HighCut on pedestal = %d\n",kLowCut,kHighCut);
+
 //___________________________________________________
 // Book HISTOGRAMS - dynamics of p-p collisions -
       
   char     ADCname[6]; 
   char     PEDname[6]; 
-  TH1F     *hADCname[64];
-  TH1F     *hPEDname[64];  
+  TH1F     *hADCname[128];
+  TH1F     *hPEDname[128];  
   
   char  texte[12];
-  for (Int_t i=0; i<64; i++) {
+  for (Int_t i=0; i<128; i++) {
        sprintf(ADCname,"hADC%d",i);
        sprintf(texte,"ADC cell%d",i);
-       hADCname[i]  = new TH1F(ADCname,texte,1024,0,2047);
+       hADCname[i]  = new TH1F(ADCname,texte,1024,-0.5, 1023.5);
        sprintf(PEDname,"hPED%d",i);
        sprintf(texte,"PED cell%d",i);
-       hPEDname[i]  = new TH1F(PEDname,texte,1024,0,2047);}
+       hPEDname[i]  = new TH1F(PEDname,texte,1024,-0.5, 1023.5);
+  }
 //___________________________________________________ 
   
-  
-  /* log start of process */
-  printf("VZERO DA program started\n");  
-
-  /* check that we got some arguments = list of files */
-  if (argc<2)   {
-      printf("Wrong number of arguments\n");
-      return -1;}
-
   /* open result file to be exported to FES */
   FILE *fp=NULL;
-  fp=fopen("./V0_Ped_Width_Gain.dat","a");
+  fp=fopen("./V0_Ped_Width_Gain.dat","w");
   if (fp==NULL) {
       printf("Failed to open result file\n");
       return -1;}
 
-  /* open log file to inform user */
-  FILE *flog=NULL;
-  flog=fopen("./V00log.txt","a");
-  if (flog==NULL) {
-      printf("Failed to open log file\n");
-      return -1;  }
-    
-  /* report progress */
-  daqDA_progressReport(10);
+  /* define data source : this is argument 1 */  
+  status=monitorSetDataSource( argv[1] );
+  if (status!=0) {
+     printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
+     return -1;
+  }
 
+  /* declare monitoring program */
+  status=monitorDeclareMp( __FILE__ );
+  if (status!=0) {
+    printf("monitorDeclareMp() failed : %s\n",monitorDecodeError(status));
+    return -1;
+  }
 
+  /* define wait event timeout - 1s max */
+  monitorSetNowait();
+  monitorSetNoWaitNetworkTimeout(1000);
+  
   /* init counters on events */
   int nevents_physics=0;
   int nevents_total=0;
 
-  /* read the data files, considering n files */
-  
-  int n;
-  
-  for (n=1;n<argc;n++) {
-   
-    status=monitorSetDataSource( argv[n] );
-    if (status!=0) {
-        printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
-        return -1; }
-
-    /* report progress - here indexed on the number of files */
-    daqDA_progressReport(10+80*n/argc);
-
-    /* read the data file */
-    for(;;) {
-        struct eventHeaderStruct *event;
-        eventTypeType eventT;
-
-        /* get next event */
-        status=monitorGetEventDynamic((void **)&event);
-        if (status==MON_ERR_EOF) break; /* end of monitoring file has been reached */
-        if (status!=0) {
-            printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
-            return -1; }
-
-        /* retry if got no event */
-        if (event==NULL) break;
-        
-        /* decode event */
-        eventT=event->eventType;
+  /* loop on events (infinite) */
+  for(;;) {
+      struct eventHeaderStruct *event;
+      eventTypeType eventT;
+
+      /* check shutdown condition */
+      if (daqDA_checkShutdown()) {break;}   
+
+      /* get next event (blocking call until timeout) */
+      status=monitorGetEventDynamic((void **)&event);
+      if (status==MON_ERR_EOF) {
+          printf ("End of File detected\n");
+      break; /* end of monitoring file has been reached */
+      }
+    
+      if (status!=0) {
+           printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
+      break;
+      }
+
+      /* retry if got no event */
+      if (event==NULL) continue;
+               
+      /* decode event */
+      eventT=event->eventType;
        
-        switch (event->eventType){
+      switch (event->eventType){
       
-        case START_OF_RUN:
-             break;
+      case START_OF_RUN:
+           break;
       
-        case END_OF_RUN:
-            printf("End Of Run detected\n");
-             break;
+      case END_OF_RUN:
+           printf("End Of Run detected\n");
+           break;
       
-        case PHYSICS_EVENT:
-             nevents_physics++;
-        
-             fprintf(flog,"Run #%lu, event size: %lu, BC:%u, Orbit:%u, Period:%u\n",
-                 (unsigned long)event->eventRunNb,
-                 (unsigned long)event->eventSize,
-                 EVENT_ID_GET_BUNCH_CROSSING(event->eventId),
-                 EVENT_ID_GET_ORBIT(event->eventId),
-                 EVENT_ID_GET_PERIOD(event->eventId) );
-                
-            AliRawReader *rawReader = new AliRawReaderDate((void*)event);
-             rawReader->RequireHeader(kFALSE);  
-            AliVZERORawStream* rawStream  = new AliVZERORawStream(rawReader);    
-            rawStream->Next(); 
-            for(Int_t i=0; i<64; i++) {
-                hADCname[i]->Fill(rawStream->GetADC(i)); 
+      case PHYSICS_EVENT:
+           nevents_physics++;
+                        
+          AliRawReader *rawReader = new AliRawReaderDate((void*)event);
+  
+          AliVZERORawStream* rawStream  = new AliVZERORawStream(rawReader); 
+          rawStream->Next();   
+           for(Int_t i=0; i<64; i++) {
+               Int_t nFlag = 0;
                for(Int_t j=0; j<21; j++) {
-                   if(j==10) continue;
-                    hPEDname[i]->Fill(rawStream->GetPedestal(i,j)); }
-             }    
-             delete rawStream;
-             rawStream = 0x0;      
-             delete rawReader;
-             rawReader = 0x0;                                                                   
-        } // end of switch on event type 
+                  if((rawStream->GetBBFlag(i,j)) || (rawStream->GetBGFlag(i,j))) nFlag++; 
+               }
+               if(nFlag == 0){       // Pedestal
+                  for(Int_t j=5;j<16;j++){
+                      Int_t Integrator = rawStream->GetIntegratorFlag(i,j);
+                      Float_t pedestal = (float)(rawStream->GetPedestal(i,j));
+                      hPEDname[i + 64 * Integrator]->Fill(pedestal);
+                  }    
+               } 
+               if((rawStream->GetBBFlag(i,10)) || (rawStream->GetBGFlag(i,10))){ // Charge
+                   Int_t Integrator = rawStream->GetIntegratorFlag(i,10);
+                   Float_t charge = (float)(rawStream->GetADC(i));
+                   hADCname[i + 64 * Integrator]->Fill(charge);
+               }                          
+           }    
+           delete rawStream;
+           rawStream = 0x0;      
+           delete rawReader;
+           rawReader = 0x0;                                                                     
+      } // end of switch on event type 
        
-        nevents_total++;
-        /* free resources */
-        free(event);
+      nevents_total++;
+      /* free resources */
+      free(event);
+       
+      /* exit when last event received, no need to wait for TERM signal */
+      if (eventT==END_OF_RUN) {
+           printf("End Of Run event detected\n");
+      break;
+    }
 
-    }  // loop over events
+  }  // loop over events
+  
+  printf("%d physics events processed\n",nevents_physics);
     
-   }  // loop over data files
 //________________________________________________________________________
 //  Computes mean values, dumps them into the output text file
        
-  for(Int_t i=0; i<64; i++) {
+  for(Int_t i=0; i<128; i++) {
       hPEDname[i]->GetXaxis()->SetRange(0,kHighCut);
       PEDmean[i]  = hPEDname[i]->GetMean(); 
       PEDsigma[i] = hPEDname[i]->GetRMS(); 
-      hADCname[i]->GetXaxis()->SetRange(kLowCut,2047);
-      ADCmean[i] = hADCname[i]->GetMean() ; 
-      fprintf(fp," %.3f %.3f %.3f\n",PEDmean[i],PEDsigma[i],ADCmean[i]);
-  } 
-
+      hADCname[i]->GetXaxis()->SetRange(kLowCut,1024);
+      ADCmean[i]  = hADCname[i]->GetMean();
+      ADCsigma[i] = hADCname[i]->GetRMS(); 
+      fprintf(fp," %.3f %.3f %.3f %.3f\n",PEDmean[i],PEDsigma[i],ADCmean[i],ADCsigma[i]);
+  }
+   
 //________________________________________________________________________
 // Write root file with histos for users further check - just in case - 
 
   TFile *histoFile = new TFile("VZERO_histos.root","RECREATE");
     
-  for (Int_t i=0; i<64; i++) {
+  for (Int_t i=0; i<128; i++) {
+       hADCname[i]->GetXaxis()->SetRange(0,1024);
        hADCname[i]->Write(); 
        hPEDname[i]->Write(); }
 
   histoFile->Close(); 
+  delete histoFile;
   
 //________________________________________________________________________
    
-  /* write report */
-  fprintf(flog,"Run #%s, received %d physics events out of %d\n",getenv("DATE_RUN_NUMBER"),nevents_physics,nevents_total);
-  printf("Run #%s, received %d physics events out of %d\n",getenv("DATE_RUN_NUMBER"),nevents_physics,nevents_total);
-  
-  /* close result and log files */
-  fclose(fp);
-  fclose(flog); 
-  
-  /* report progress */
-  daqDA_progressReport(90);
-
 
+  /* close result file */
+  fclose(fp);
   /* export result file to FES */
   status=daqDA_FES_storeFile("./V0_Ped_Width_Gain.dat","V00da_results");
   if (status)    {
       printf("Failed to export file : %d\n",status);
       return -1; }
 
-  /* report progress */
-  daqDA_progressReport(100);
-  
   return status;
 }