]> git.uio.no Git - u/mrichter/AliRoot.git/blob - VZERO/VZEROTUNING2da.cxx
6ccad718e29f4492fb86e41bf8f817b9e658182c
[u/mrichter/AliRoot.git] / VZERO / VZEROTUNING2da.cxx
1 /*********************************************************************************
2 - Contact:    Brigitte Cheynis     b.cheynis@ipnl.in2p3.fr
3 - Link:       http
4 - Raw data test file : 
5 - Reference run number :              
6 - Run Type:   STANDALONE
7 - DA Type:    LDC
8 - Number of events needed: 500
9 - Input Files:  argument list
10 - Output Files: local file  V0_Tuning2.dat
11                 FXS file    V0_Tuning2.dat
12 - Trigger types used: PHYSICS_EVENT
13 **********************************************************************************/
14
15
16 /**********************************************************************************
17 *                                                                                 *
18 * VZERO Detector Algorithm used for tuning FEE parameters                         *
19 *                                                                                 *
20 * This program reads data on the LDC                                              *
21 * It cumulates mean ADC responses ,  populates local  "./V0_Tuning2.dat"  file    * 
22 * and exports it to the FES.                             *                        *                    *
23 * We have 128 channels instead of 64 as expected for V0 due to the two sets of    *
24 * charge integrators which are used by the FEE ...                                *
25 * The program reports about its processing progress.                              *
26 *                                                                                 *
27 ***********************************************************************************/
28
29 // DATE
30 #include "event.h"
31 #include "monitor.h"
32 #include "daqDA.h"
33
34 //AliRoot
35 #include <AliVZERORawStream.h>
36 #include <AliRawReaderDate.h>
37 #include <AliRawReader.h>
38 #include <AliDAQ.h>
39
40 // standard
41 #include <stdio.h>
42 #include <stdlib.h>
43
44 //ROOT
45 #include "TROOT.h"
46 #include "TPluginManager.h"
47 #include <TFile.h>
48 #include <TH1F.h>
49 #include <TMath.h>
50
51
52 /* Main routine --- Arguments: list of DATE raw data files */
53       
54 int main(int argc, char **argv) {
55
56 /* magic line from Cvetan */
57   gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
58                     "*",
59                     "TStreamerInfo",
60                     "RIO",
61                     "TStreamerInfo()");
62   int status;
63
64   Float_t ADC_Mean[128];
65   for(Int_t i=0; i<128; i++) {
66       ADC_Mean[i] = 0.0;
67   } 
68       
69   /* log start of process */
70   printf("VZERO DA program started - Tuning FEE parameters\n");  
71
72   /* check that we got some arguments = list of files */
73   if (argc<2)   {
74       printf("Wrong number of arguments\n");
75       return -1;}
76                
77   /* open result file to be exported to FES */
78   FILE *fp=NULL;
79   fp=fopen("./V0_Tuning2.dat","a");
80   if (fp==NULL) {
81       printf("Failed to open result file\n");
82       return -1;}
83
84   /* open log file to inform user */
85   FILE *flog=NULL;
86   flog=fopen("./V00log.txt","a");
87   if (flog==NULL) {
88       printf("Failed to open log file\n");
89       return -1;  }
90     
91   /* report progress */
92   daqDA_progressReport(10);
93
94   /* init counters on events */
95   int nevents_physics=0;
96   int nevents_total=0;
97   
98   /* read the n data files */
99   for (int n=1; n<argc; n++) {
100   
101   /* read the data  */
102     status=monitorSetDataSource( argv[n] );
103   if (status!=0) {
104       printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
105       return -1; }
106
107   /* report progress */
108   daqDA_progressReport(10+50*n/argc);
109    
110   /* read the data file */
111     for(;;) {
112         struct eventHeaderStruct *event;
113         eventTypeType eventT;
114
115         /* get next event */
116         status=monitorGetEventDynamic((void **)&event);
117         if (status==MON_ERR_EOF) break; /* end of monitoring file has been reached */
118         if (status!=0) {
119             printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
120             return -1; }
121
122         /* retry if got no event */
123         if (event==NULL) break;
124         
125         /* decode event */
126         eventT=event->eventType;
127         
128         switch (event->eventType){
129       
130         case START_OF_RUN:
131              break;
132       
133         case END_OF_RUN:
134              printf("End Of Run detected\n");
135              break;
136       
137         case PHYSICS_EVENT:
138              nevents_physics++;
139                          
140              AliRawReader *rawReader = new AliRawReaderDate((void*)event);
141   
142              AliVZERORawStream* rawStream  = new AliVZERORawStream(rawReader); 
143              rawStream->Next(); 
144              for(Int_t i=0; i<64; i++) {
145                 if(!rawStream->GetIntegratorFlag(i,10))
146                 {
147                     ADC_Mean[i]=ADC_Mean[i]+rawStream->GetADC(i);       // even integrator 
148                 }
149                 else 
150                 {                  
151                     ADC_Mean[i+64]=ADC_Mean[i+64]+rawStream->GetADC(i); // odd integrator
152                 }
153              }    
154              delete rawStream;
155              rawStream = 0x0;      
156              delete rawReader;
157              rawReader = 0x0;                                                                    
158         } // end of switch on event type 
159         
160         nevents_total++;
161         /* free resources */
162         free(event);
163
164     }    // end of loop over events
165   }      // end of loop over data files 
166
167 //________________________________________________________________________
168 //  Computes mean values, dumps them into the output text file
169         
170   for(Int_t i=0; i<128; i++) {
171       ADC_Mean[i]=ADC_Mean[i]/nevents_physics;
172       fprintf(fp," %d %f\n",i,ADC_Mean[i]);
173       fprintf(flog," %d %f\n",i,ADC_Mean[i]);
174   } 
175   fprintf(fp," End of current iteration \n");
176 //________________________________________________________________________
177    
178   /* write report */
179   fprintf(flog,"Run #%s, received %d physics events out of %d\n",getenv("DATE_RUN_NUMBER"),nevents_physics,nevents_total);
180   printf("Run #%s, received %d physics events out of %d\n",getenv("DATE_RUN_NUMBER"),nevents_physics,nevents_total);
181   
182   /* close result and log files */
183   fclose(fp);
184   fclose(flog); 
185   
186   /* report progress */
187   daqDA_progressReport(90);
188
189   /* export result file to FES */
190   status=daqDA_FES_storeFile("./V0_Tuning2.dat","V00da_results");
191   if (status)    {
192       printf("Failed to export file : %d\n",status);
193       return -1; }
194
195   /* report progress */
196   daqDA_progressReport(100);
197   
198   return status;
199 }