]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/TRDVDRIFTda.cxx
06eaf5fd79b4e87f31c54dee80de7985501baeca
[u/mrichter/AliRoot.git] / TRD / TRDVDRIFTda.cxx
1 /*
2
3 Contact: r.bailhache@gsi.de
4 Link:
5 Reference run: 25909
6 Run Type: PHYSICS STANDALONE
7 DA Type: MON
8 Number of events needed: many
9 Input Files:  TRD raw files
10 Output Files: trdCalibrationv.root
11 Trigger types used: PHYSICS_EVENT
12
13 */
14
15 #define RESULT_FILE  "trdVdrift.root"
16 #define FILE_ID "VDRIFT"
17
18
19 extern "C" {
20 #include <daqDA.h>
21 }
22
23 #include "event.h"
24 #include "monitor.h"
25 #include <stdio.h>
26 #include <stdlib.h>
27
28
29 //
30 //Root includes
31 //
32 #include <TObjArray.h>
33 #include <TString.h>
34 #include <TVectorF.h>
35 #include <TDirectory.h>
36 #include <TSystem.h>
37 #include <TFile.h>
38 #include "TROOT.h"
39 #include "TPluginManager.h"
40 //
41 //AliRoot includes
42 //
43 #include "AliRawReader.h"
44 #include "AliRawReaderDate.h"
45 #include "AliTRDrawStream.h"
46 #include "AliTRDrawStreamBase.h"
47
48
49 //
50 // TRD calibration algorithm includes
51 //
52 #include "AliTRDCalibraFillHisto.h"
53
54
55
56
57 /* Main routine
58       Arguments: 
59       1- monitoring data source
60 */
61 int main(int argc, char **argv) {
62
63   /* magic line from Rene */
64   gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
65                                         "*",
66                                         "TStreamerInfo",
67                                         "RIO",
68                                         "TStreamerInfo()");
69   int status;
70
71   if (argc!=2) {
72     printf("Wrong number of arguments\n");
73     return -1;
74   }
75
76
77   /* define data source : this is argument 1 */  
78   status=monitorSetDataSource( argv[1] );
79   if (status!=0) {
80     printf("monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
81     return -1;
82   }
83
84
85   /* declare monitoring program */
86   status=monitorDeclareMp( __FILE__ );
87   if (status!=0) {
88     printf("monitorDeclareMp() failed : %s\n",monitorDecodeError(status));
89     return -1;
90   }
91
92
93   /* define wait event timeout - 1s max */
94   monitorSetNowait();
95   monitorSetNoWaitNetworkTimeout(1000);
96   
97
98   /* log start of process */
99   printf("TRD DA VDRIFT started\n");  
100
101
102   /* init some counters */
103   int neventsphysics=0;
104   int neventstotal=0;
105
106   //Instance of AliCDBManager: needed by AliTRDrawStream
107   //AliCDBManager *man = AliCDBManager::Instance();
108   //man->SetDefaultStorage("local://$ALICE_ROOT/OCDB");
109   //man->SetRun(0);
110   //Instance of AliTRDCalibraFillHisto
111   AliTRDCalibraFillHisto *calibra      = AliTRDCalibraFillHisto::Instance();
112   // everythings are okey for vdrift
113   Bool_t passvdrift  = kTRUE;    // if timebin okey
114   Int_t  nbvdrift    = 0;     // number of events with entries for vdrift
115
116    // setting
117   // AliTRDrawStream::SetNoDebug();
118   AliTRDrawStream::SetNoErrorWarning();
119   AliTRDrawStream::SetSubtractBaseline(0); 
120   //AliTRDrawStream::SetForceCleanDataOnly();
121   AliTRDrawStream::AllowCorruptedData();
122   AliTRDrawStream::DisableStackNumberChecker();
123   AliTRDrawStream::DisableStackLinkNumberChecker();
124   //AliTRDrawStream::SetSkipCDH();
125   //AliTRDrawStream::SetExtraWordsFix();
126   //AliTRDrawStream::EnableDebugStream();
127   //AliTRDrawStream::SetDumpHead(320);
128   //AliTRDrawStream::SetDumpHead(80);
129
130   
131   /* main loop (infinite) */
132   for(;;) {
133   //for(Int_t k = 0; k < 20; k++) {
134     struct eventHeaderStruct *event;
135     eventTypeType eventT;
136
137     /* check shutdown condition */
138     if (daqDA_checkShutdown()) {break;}
139     
140     /* get next event (blocking call until timeout) */
141     status=monitorGetEventDynamic((void **)&event);
142     if (status==MON_ERR_EOF) {
143       printf ("End of File detected\n");
144       break; /* end of monitoring file has been reached */
145     }
146     
147     if (status!=0) {
148       printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
149       break;
150     }
151
152     /* retry if got no event */
153     if (event==NULL) {
154       continue;
155     }
156
157     if( ((Int_t)neventstotal)%1000 == 0 ) printf(" event number %d (physic event number %d) will be processed\n",(Int_t) neventstotal,(Int_t) neventsphysics);  
158
159
160     /* use event - here, just write event id to result file */
161     eventT=event->eventType;
162     
163     //
164     // vdrift calibration: run only for physics events
165     //
166     if ((eventT==PHYSICS_EVENT) && (passvdrift)) {
167       //if (eventT==PHYSICS_EVENT) {
168       AliRawReader *rawReader = new AliRawReaderDate((void*)event);
169       rawReader->Select("TRD");
170       AliTRDrawStream *trdRawStream = new AliTRDrawStream((AliRawReader *) rawReader);
171       Int_t result = calibra->ProcessEventDAQ((AliTRDrawStreamBase *) trdRawStream,(Bool_t)nbvdrift);
172       if(!result) passvdrift = kFALSE;
173       else nbvdrift += (Int_t) result/2;
174              
175       delete trdRawStream;
176       delete rawReader;
177     
178     } 
179    
180     if(eventT==PHYSICS_EVENT){
181  
182       neventsphysics++;
183      
184     }
185     
186     neventstotal++;
187
188
189     /* free resources */
190     free(event);
191     
192     /* exit when last event received, no need to wait for TERM signal */
193     if (eventT==END_OF_RUN) {
194       printf("EOR event detected\n");
195       break;
196     }
197   }
198
199
200   /* report progress */
201   printf("%d events processed and %d used\n",neventstotal,nbvdrift);
202   
203   //
204   // Write a local file and put it on the FX 
205   //
206   TFile  *fileTRD     = new TFile(RESULT_FILE,"recreate");
207  
208   if((nbvdrift > 0) && passvdrift){
209     //Double_t *stat = calibra->StatH((TH2 *)(calibra->GetPH2d()),1);
210     //if((stat[6] < 0.20) && (stat[5] > 3000.0)) {
211     // write the histogram in any case to see if problems
212     calibra->GetPH2d()->Write();
213     //}
214   }
215   fileTRD->Close();
216   status=0;
217   // Export the file in any case to see if problems
218   if(daqDA_FES_storeFile(RESULT_FILE,FILE_ID)) status = -2;
219   
220   delete fileTRD;  
221
222   return status;
223 }