]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/TPCCEnewda.cxx
adding usage of vtx axis as a parameter in the addtask macro
[u/mrichter/AliRoot.git] / TPC / TPCCEnewda.cxx
CommitLineData
78f17711 1/*
2TPC DA for online calibration
3
4Contact: Haavard.Helstrup@cern.ch
5Link:
6Run Type: PHYSICS STANDALONE DAQ
7DA Type: MON
8Number of events needed: 500
9Input Files:
10Output Files: tpcCE.root, to be exported to the DAQ FXS
11fileId: CEnew
12Trigger types used: PHYSICS_EVENT
13
14*/
15
16/*
17
18TPCCEda.cxx - calibration algorithm for TPC Central Electrode events
19
2010/06/2007 sylvain.chapeland@cern.ch : first version - clean skeleton based on DAQ DA case1
2106/12/2007 haavard.helstrup@cern.ch : created CE DA based on pulser code
2219/09/2008 J.Wiechula@gsi.de: Added support for configuration files.
23
24contact: marian.ivanov@cern.ch
25
26
27This process reads RAW data from the files provided as command line arguments
28and save results in a file (named from RESULT_FILE define - see below).
29
30*/
31
32#define RESULT_FILE "tpcCEnew.root"
33#define FILE_ID "CEnew"
34#define MAPPING_FILE "tpcMapping.root"
35#define CONFIG_FILE "TPCCEda.conf"
36#define LASER_TRACK_FILE "LaserTracks.root"
37
38#include <daqDA.h>
39#include "event.h"
40#include "monitor.h"
41#include <stdio.h>
42#include <stdlib.h>
43#include <vector>
44//
45//Root includes
46//
47#include <TFile.h>
48#include "TROOT.h"
49#include "TPluginManager.h"
50#include "TSystem.h"
51#include "TString.h"
52#include "TObjString.h"
53#include "TDatime.h"
54#include "TStopwatch.h"
55#include "TMap.h"
56#include "TGraph.h"
57#include "TMath.h"
58//
59//AliRoot includes
60//
61#include "AliRawReader.h"
62#include "AliRawReaderDate.h"
63#include "AliTPCmapper.h"
64#include "AliTPCRawStream.h"
65#include "AliTPCROC.h"
66#include "AliTPCCalROC.h"
67#include "AliTPCCalPad.h"
68#include "AliMathBase.h"
69#include "TTreeStream.h"
70#include "AliLog.h"
71#include "AliTPCConfigDA.h"
72//
73//AMORE
74//
75#include <AmoreDA.h>
76//
77// TPC calibration algorithm includes
78//
79#include "AliTPCCalibCE.h"
80
81
82//functios, implementation below
83void SendToAmoreDB(AliTPCCalibCE &calibCE, unsigned long32 runNb);
84//for threaded processing
85
86
87/* Main routine
88 Arguments: list of DATE raw data files
89*/
90int main(int argc, char **argv) {
91 /* log start of process */
92 printf("TPCCEda: DA started - %s\n",__FILE__);
93
94 if (argc<2) {
95 printf("TPCCEda: Wrong number of arguments\n");
96 return -1;
97 }
98
99 AliLog::SetClassDebugLevel("AliTPCRawStream",-5);
100 AliLog::SetClassDebugLevel("AliRawReaderDate",-5);
101 AliLog::SetClassDebugLevel("AliTPCAltroMapping",-5);
102 AliLog::SetModuleDebugLevel("RAW",-5);
103
104 gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
105 "*",
106 "TStreamerInfo",
107 "RIO",
108 "TStreamerInfo()");
109
110 /* declare monitoring program */
111 int i,status;
112 status=monitorDeclareMp( __FILE__ );
113 if (status!=0) {
114 printf("TPCCEnewda: monitorDeclareMp() failed : %s\n",monitorDecodeError(status));
115 return -1;
116 }
117 monitorSetNowait();
118 monitorSetNoWaitNetworkTimeout(1000);
119
120 //variables
121 AliTPCmapper *mapping = 0; // The TPC mapping
122 char localfile[255];
123 unsigned long32 runNb=0; //run number
124
125
126 //
127 // DA configuration from configuration file
128 //
129 //retrieve configuration file
130 sprintf(localfile,"./%s",CONFIG_FILE);
131 status = daqDA_DB_getFile(CONFIG_FILE,localfile);
132 if (status) {
133 printf("TPCCEda: Failed to get configuration file (%s) from DAQdetDB, status=%d\n", CONFIG_FILE, status);
134 return -1;
135 }
136 AliTPCConfigDA config(CONFIG_FILE);
137 // check configuration options
138 TString laserTriggerName("C0LSR-ABCE-NOPF-CENT");
139 TString monitoringType("YES");
140 TString cdb("local:///local/cdb");
141 Int_t forceTriggerId=-1;
142
143 if ( config.GetConfigurationMap()->GetValue("LaserTriggerName") ) {
144 laserTriggerName=config.GetConfigurationMap()->GetValue("LaserTriggerName")->GetName();
145 printf("TPCCEnewda: Laser trigger class name set to: %s.\n",laserTriggerName.Data());
146 }
147
148 if ( config.GetConfigurationMap()->GetValue("MonitoringType") ) {
149 monitoringType=config.GetConfigurationMap()->GetValue("MonitoringType")->GetName();
150 printf("TPCCEnewda: Monitoring type set to: %s.\n",monitoringType.Data());
151 }
152
153 if ( config.GetConfigurationMap()->GetValue("ForceLaserTriggerId") ) {
154 forceTriggerId=TMath::Nint(config.GetValue("ForceLaserTriggerId"));
155 printf("TPCCEnewda: Only processing triggers with Id: %d.\n",forceTriggerId);
156 }
157
158 //subsribe to laser triggers only in physics partition
159 //if the trigger class is not available the return value is -1
160 //in this case we are most probably running as a standalone
161 // laser run and should request all events
162 unsigned char classIdptr=0;
163 int retClassId=daqDA_getClassIdFromName(laserTriggerName.Data(),&classIdptr);
164 if (retClassId==0){
165 //interleaved laser in physics runs
166 //select proper trigger class id
167 char c[5];
168 snprintf(c,sizeof(c),"%u",(unsigned int)classIdptr);
169 char *table[5] = {"PHY",const_cast<char*>(monitoringType.Data()),"*",c,NULL};
170 monitorDeclareTableExtended(table);
171 printf("TPCCEnewda: Using monitoring table: (PHY, %s, *, %s)\n",monitoringType.Data(),c);
172 } else if (retClassId==-1){
173 //global partition without laser triggered events
174 //the DA should exit properly without processing
175 printf("TPCCEnewda: Laser trigger class '%s' was not found among trigger class names. Will stop processing.\n",laserTriggerName.Data());
176 return 0;
177 } else if (retClassId==-2){
178 //standalone case, accept all physics events
179 char *table[5] = {"PHY","Y","*","*",NULL};
180 monitorDeclareTableExtended(table);
181 printf("TPCCEnewda: Using all trigger class Ids\n");
182 } else {
183 printf("TPCCEnewda: Unknown return value of 'daqDA_getClassIdFromName': %d\n",retClassId);
184 return -2;
185 }
186
187 //see if we should force the trigger id
188 if (forceTriggerId>-1){
189 char c[5];
190 sprintf(c,"%d",forceTriggerId);
191 char *table[5] = {"PHY","Y","*",c,NULL};
192 monitorDeclareTableExtended(table);
193 }
194
195
196 // if test setup get parameters from $DAQDA_TEST_DIR
197 if (!mapping){
198 /* copy locally the mapping file from daq detector config db */
199 sprintf(localfile,"./%s",MAPPING_FILE);
200 status = daqDA_DB_getFile(MAPPING_FILE,localfile);
201 if (status) {
202 printf("TPCCEnewda: Failed to get mapping file (%s) from DAQdetDB, status=%d\n", MAPPING_FILE, status);
203 return -1;
204 }
205
206 /* open the mapping file and retrieve mapping object */
207 TFile *fileMapping = new TFile(MAPPING_FILE, "read");
208 mapping = (AliTPCmapper*) fileMapping->Get("tpcMapping");
209 delete fileMapping;
210 }
211
212 if (mapping == 0) {
213 printf("TPCCEnewda: Failed to get mapping object from %s. ...\n", MAPPING_FILE);
214 return -1;
215 } else {
216 printf("TPCCEnewda: Got mapping object from %s\n", MAPPING_FILE);
217 }
218
219 //========== Laser Track data base
220 sprintf(localfile,"./%s",LASER_TRACK_FILE);
221 status = daqDA_DB_getFile(LASER_TRACK_FILE,localfile);
222 if (status) {
223 printf("TPCCEnewda: Failed to get the laser track file (%s) from DAQdetDB, status=%d\n", MAPPING_FILE, status);
224 return -1;
225 }
226
227
228 //create calibration object with the new algorithm
229 AliTPCCalibCE calibCE(config.GetConfigurationMap()); // central electrode calibration
230 calibCE.SetAltroMapping(mapping->GetAltroMapping()); // Use altro mapping we got from daqDetDb
231 calibCE.SetProcessOld(kFALSE);
232 calibCE.SetProcessNew();
233
234 //amore update interval
235 Double_t updateInterval=300; //seconds
236 Double_t valConf=config.GetValue("AmoreUpdateInterval");
237 if ( valConf>0 ) updateInterval=valConf;
238 //timer
239 TStopwatch stopWatch;
240
241 //===========================//
242 // loop over RAW data files //
243 //==========================//
244 int nevents=0;
245 int neventsOld=0;
246 size_t counter=0;
247 for ( i=1; i<argc; i++) {
248
249 /* define data source : this is argument i */
250 printf("TPCCEnewda: Processing file %s\n", argv[i]);
251 status=monitorSetDataSource( argv[i] );
252 if (status!=0) {
253 printf("TPCCEnewda: monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
254 return -1;
255 }
256
257
258 /* read until EOF */
259 while (true) {
260 struct eventHeaderStruct *event;
261
262 /* check shutdown condition */
263 if (daqDA_checkShutdown()) {break;}
264
265 /* get next event (blocking call until timeout) */
266 status=monitorGetEventDynamic((void **)&event);
267 if (status==MON_ERR_EOF) {
268 printf ("TPCCEnewda: End of File %d detected\n",i);
269 break; /* end of monitoring file has been reached */
270 }
271
272 if (status!=0) {
273 printf("TPCCEnewda: monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
274 break;
275 }
276
277 /* retry if got no event */
278 if (event==NULL){
279 //use time in between bursts to
280 // send the data to AMOREdb
281 if (stopWatch.RealTime()>updateInterval){
282 calibCE.Analyse();
283 SendToAmoreDB(calibCE,runNb);
284 stopWatch.Start();
285 } else {
286 stopWatch.Continue();
287 }
288 //debug output
289 if (nevents>neventsOld){
290 printf ("TPCCEnewda: %d events processed, %d used\n",nevents,calibCE.GetNeventsProcessed());
291 neventsOld=nevents;
292 }
293
294 continue;
295 }
296
297 /* skip start/end of run events */
298 if ( (event->eventType != physicsEvent) && (event->eventType != calibrationEvent) ){
299 free(event);
300 continue;
301 }
302
303
304 // get the run number
305 runNb = event->eventRunNb;
306
307 // CE calibration
308 calibCE.ProcessEvent(event);
309
310 /* free resources */
311 free(event);
312 ++nevents;
313 }
314 }
315
316 //
317 // Analyse CE data and write them to rootfile
318 //
319 calibCE.Analyse();
320 printf ("TPCCEnewda: %d events processed, %d used\n",nevents,calibCE.GetNeventsProcessed());
321
322// TFile * fileTPC = new TFile (RESULT_FILE,"recreate");
323// calibCE.Write("tpcCalibCE");
324// delete fileTPC;
e9d80afd 325
78f17711 326 calibCE.DumpToFile(RESULT_FILE,"name=tpcCalibCE,type=3");
327 printf("TPCCEnewda: Wrote %s\n",RESULT_FILE);
328
329 /* store the result file on FES */
e9d80afd 330
78f17711 331 status=daqDA_FES_storeFile(RESULT_FILE,FILE_ID);
332 if (status) {
333 status = -2;
334 }
335
e9d80afd 336 printf("TPCCEnewda: Amore part %s\n",RESULT_FILE);
78f17711 337 SendToAmoreDB(calibCE,runNb);
338
339 return status;
340}
341
342
343void SendToAmoreDB(AliTPCCalibCE &calibCE, unsigned long32 runNb)
344{
345 //AMORE
346// printf ("AMORE part\n");
347 const char *amoreDANameorig=gSystem->Getenv("AMORE_DA_NAME");
348 //cheet a little -- temporary solution (hopefully)
349 //
350 //currently amoreDA uses the environment variable AMORE_DA_NAME to create the mysql
351 //table in which the calib objects are stored. This table is dropped each time AmoreDA
352 //is initialised. This of course makes a problem if we would like to store different
353 //calibration entries in the AMORE DB. Therefore in each DA which writes to the AMORE DB
354 //the AMORE_DA_NAME env variable is overwritten.
355 gSystem->Setenv("AMORE_DA_NAME",Form("TPC-%s",FILE_ID));
356 //
357 // end cheet
358 TGraph *grA=calibCE.MakeGraphTimeCE(-1,0,2);
359 TGraph *grC=calibCE.MakeGraphTimeCE(-2,0,2);
360 TDatime time;
361 TObjString info(Form("Run: %u; Date: %s",runNb,time.AsSQLString()));
362 amore::da::AmoreDA amoreDA(amore::da::AmoreDA::kSender);
363 Int_t statusDA=0;
e9d80afd 364// statusDA+=amoreDA.Send("CET0",calibCE.GetCalPadT0());
365// statusDA+=amoreDA.Send("CEQ",calibCE.GetCalPadQ());
366// statusDA+=amoreDA.Send("CERMS",calibCE.GetCalPadRMS());
367// statusDA+=amoreDA.Send("DriftA",grA);
368// statusDA+=amoreDA.Send("DriftC",grC);
369 statusDA+=amoreDA.Send("FitGraphs",calibCE.GetArrFitGraphs());
78f17711 370 statusDA+=amoreDA.Send("Info",&info);
371 if ( statusDA!=0 )
372 printf("TPCCEnewda: Waring: Failed to write one of the calib objects to the AMORE database\n");
373 // reset env var
374 if (amoreDANameorig) gSystem->Setenv("AMORE_DA_NAME",amoreDANameorig);
375 if (grA) delete grA;
376 if (grC) delete grC;
377}
378
379