]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/TPCPEDESTALda.cxx
Extacting the OCDB in a separate module. The detectors have write permission in the...
[u/mrichter/AliRoot.git] / TPC / TPCPEDESTALda.cxx
CommitLineData
9c754ce7 1/*
2TPC DA for online calibration
3
4Contact: Haavard.Helstrup@cern.ch
5Link:
1b37fc95 6Run Type: PEDESTAL
9c754ce7 7DA Type: LDC
8Number of events needed: 100
9Input Files:
10Output Files: tpcPedestal.root, to be exported to the DAQ FXS
bd955ed2 11fileId: pedestals
9c754ce7 12Trigger types used: CALIBRATION_EVENT
13
14*/
15
c12208b8 16/*
17
18TPCda_pedestal.cxx - calibration algorithm for TPC pedestal runs
19
2010/06/2007 sylvain.chapeland@cern.ch : first version - clean skeleton based on DAQ DA case1
49efac78 2119/10/2007 christian.lippmann@cern.ch : Possibility to write output to ASCII file
2224/10/2007 christian.lippmann@cern.ch : Including pedestal calibration for time bins
2323/11/2007 christian.lippmann@cern.ch : Fix in order to avoid streamer problems in case of
24 invalid ROOTSTYS. The famous magic line provided by Rene.
2528/11/2007 christian.lippmann@cern.ch : TPC mapping file is read from DaqDetDB
ac940b58 2618/09/2008 christian.lippmann@cern.ch : Noisy channels are output to ASCII file. Use max noise in ALTRO.
2719/09/2008 J.Wiechula@gsi.de: Added export of the calibration data to the AMORE data base.
28 Added support for configuration files.
c12208b8 29
30contact: marian.ivanov@cern.ch
31
c12208b8 32This process reads RAW data from the files provided as command line arguments
33and save results in a file (named from RESULT_FILE define - see below).
34
35*/
36
49efac78 37#define RESULT_FILE "tpcPedestal.root"
bd955ed2 38#define FILE_ID "pedestals"
49efac78 39#define MAPPING_FILE "tpcMapping.root"
ac940b58 40#define CONFIG_FILE "TPCPEDESTALda.conf"
b401648b 41#define AliDebugLevel() -1
c12208b8 42
43extern "C" {
44#include <daqDA.h>
45}
46#include "event.h"
47#include "monitor.h"
49efac78 48
49#include "stdio.h"
50#include "stdlib.h"
51#include <fstream>
c12208b8 52
53//
54//Root includes
55//
49efac78 56#include "TFile.h"
57#include "TArrayF.h"
58#include "TROOT.h"
59#include "TPluginManager.h"
ac940b58 60#include "TSystem.h"
61#include "TString.h"
62#include "TObjString.h"
63#include "TDatime.h"
c12208b8 64//
65//AliRoot includes
66//
67#include "AliRawReader.h"
68#include "AliRawReaderDate.h"
87d57858 69#include "AliTPCmapper.h"
c12208b8 70#include "AliTPCRawStream.h"
71#include "AliTPCROC.h"
72#include "AliTPCCalROC.h"
73#include "AliTPCCalPad.h"
74#include "AliMathBase.h"
75#include "TTreeStream.h"
b401648b 76#include "AliLog.h"
ac940b58 77#include "AliTPCConfigDA.h"
78
79//
80//AMORE
81//
82#include <AmoreDA.h>
c12208b8 83
84//
85// TPC calibration algorithm includes
86//
87#include "AliTPCCalibPedestal.h"
88
bdf99a93 89/*
90 Main routine, TPC pedestal detector algorithm to be run on TPC LDC
91 Arguments: list of DATE raw data files
c12208b8 92*/
bdf99a93 93
c12208b8 94int main(int argc, char **argv) {
bdf99a93 95 //
96 // Main for TPC pedestal detector algorithm
97 //
ac940b58 98 /* log start of process */
99 printf("TPC DA started - %s\n",__FILE__);
100
c12208b8 101 if (argc<2) {
102 printf("Wrong number of arguments\n");
103 return -1;
104 }
ac940b58 105 AliLog::SetClassDebugLevel("AliTPCRawStream",-5);
106 AliLog::SetClassDebugLevel("AliRawReaderDate",-5);
107 AliLog::SetClassDebugLevel("AliTPCAltroMapping",-5);
108 AliLog::SetModuleDebugLevel("RAW",-5);
c12208b8 109
49efac78 110 /* magic line */
111 gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
ac940b58 112 "*",
113 "TStreamerInfo",
114 "RIO",
115 "TStreamerInfo()");
c12208b8 116
c12208b8 117 /* declare monitoring program */
ac940b58 118 int i, status;
c12208b8 119 status=monitorDeclareMp( __FILE__ );
120 if (status!=0) {
121 printf("monitorDeclareMp() failed : %s\n",monitorDecodeError(status));
122 return -1;
123 }
ac940b58 124
125 // variables
b401648b 126 AliTPCmapper *mapping = 0; // The TPC mapping
ac940b58 127 char localfile[255];
128 unsigned long32 runNb=0; // run number
129 // configuration options
130 Bool_t timeAnalysis = kTRUE;
131 Bool_t fastDecoding = kFALSE;
132
b401648b 133 if (!mapping){
134 /* copy locally the mapping file from daq detector config db */
ac940b58 135 sprintf(localfile,"./%s",MAPPING_FILE);
136 status = daqDA_DB_getFile(MAPPING_FILE,localfile);
b401648b 137 if (status) {
138 printf("Failed to get mapping file (%s) from DAQdetDB, status=%d\n", MAPPING_FILE, status);
ac940b58 139 return -1;
b401648b 140 }
49efac78 141
b401648b 142 /* open the mapping file and retrieve mapping object */
143 TFile *fileMapping = new TFile(MAPPING_FILE, "read");
144 mapping = (AliTPCmapper*) fileMapping->Get("tpcMapping");
49efac78 145 delete fileMapping;
b401648b 146 }
147
148 if (mapping == 0) {
149 printf("Failed to get mapping object from %s. ...\n", MAPPING_FILE);
ac940b58 150 return -1;
49efac78 151 } else {
152 printf("Got mapping object from %s\n", MAPPING_FILE);
153 }
154
ac940b58 155 //
156 // DA configuration from configuration file
157 //
158 // retrieve configuration file
159 sprintf(localfile,"./%s",CONFIG_FILE);
160 status = daqDA_DB_getFile(CONFIG_FILE,localfile);
161 if (status) {
162 printf("Failed to get configuration file (%s) from DAQdetDB, status=%d\n", CONFIG_FILE, status);
163 return -1;
164 }
165 AliTPCConfigDA config(CONFIG_FILE);
166 // check configuration
167 if ( (Int_t)config.GetValue("NoTimeAnalysis") == 1 ) {
168 printf("WARNING: Time analysis was switched off in the configuration file!\n");
169 timeAnalysis=kFALSE;
170 }
171 if ( (Int_t)config.GetValue("UseFastDecoder") == 1 ){
172 printf("Info: The fast decoder will be used for the processing.\n");
173 fastDecoding=kTRUE;
b401648b 174 }
ac940b58 175
176 // create calibration object
177 AliTPCCalibPedestal calibPedestal(config.GetConfigurationMap()); // pedestal and noise calibration
178 calibPedestal.SetAltroMapping(mapping->GetAltroMapping()); // Use altro mapping we got from daqDetDb
179
180 //===========================//
181 // loop over RAW data files //
182 //==========================//
c12208b8 183 int nevents=0;
bdf99a93 184 for ( i=1; i<argc; i++ ) {
ac940b58 185
c12208b8 186 /* define data source : this is argument i */
187 printf("Processing file %s\n", argv[i]);
188 status=monitorSetDataSource( argv[i] );
189 if (status!=0) {
49efac78 190 printf("monitorSetDataSource() failed. Error=%s. Exiting ...\n", monitorDecodeError(status));
c12208b8 191 return -1;
192 }
ac940b58 193
c12208b8 194 /* read until EOF */
bdf99a93 195 for ( ; ; ) {
c12208b8 196 struct eventHeaderStruct *event;
ac940b58 197
c12208b8 198 /* check shutdown condition */
199 if (daqDA_checkShutdown()) {break;}
ac940b58 200
c12208b8 201 /* get next event (blocking call until timeout) */
202 status=monitorGetEventDynamic((void **)&event);
203 if (status==MON_ERR_EOF) {
ac940b58 204 printf ("End of File %d (%s) detected\n", i, argv[i]);
205 break; /* end of monitoring file has been reached */
c12208b8 206 }
ac940b58 207
c12208b8 208 if (status!=0) {
ac940b58 209 printf("monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
210 break;
c12208b8 211 }
212
bdf99a93 213 /* skip start/end of run events */
214 if ( (event->eventType != physicsEvent) && (event->eventType != calibrationEvent) )
ac940b58 215 continue;
bdf99a93 216
c12208b8 217 /* retry if got no event */
49efac78 218 if (event==NULL)
ac940b58 219 continue;
220
c12208b8 221 nevents++;
ac940b58 222 // get the run number
223 runNb = event->eventRunNb;
c12208b8 224 // Pedestal calibration
225 AliRawReader *rawReader = new AliRawReaderDate((void*)event);
ac940b58 226 if ( fastDecoding ) calibPedestal.ProcessEventFast(rawReader);
227 else calibPedestal.ProcessEvent(rawReader);
c12208b8 228 delete rawReader;
229
230 /* free resources */
231 free(event);
232 }
233 }
234
49efac78 235 //
236 // Analyse pedestals and write them to rootfile
237 //
49efac78 238 calibPedestal.Analyse();
239 calibPedestal.AnalyseTime(nevents);
240 printf ("%d physics/calibration events processed.\n",nevents);
c12208b8 241
bdf99a93 242 TFile *fileTPC = new TFile(RESULT_FILE, "recreate");
e73181c9 243 calibPedestal.Write("tpcCalibPedestal");
c12208b8 244 delete fileTPC;
49efac78 245 printf("Wrote %s.\n",RESULT_FILE);
f2c72763 246
ac940b58 247 /* store the result file on FES */
248 status=daqDA_FES_storeFile(RESULT_FILE,FILE_ID);
249 if (status) {
250 status = -2;
251 }
252 //
253 //Send objects to the AMORE DB
254 //
255 printf ("AMORE part\n");
256 const char *amoreDANameorig=gSystem->Getenv("AMORE_DA_NAME");
257 //cheet a little -- temporary solution (hopefully)
258 //
259 //currently amoreDA uses the environment variable AMORE_DA_NAME to create the mysql
260 //table in which the calib objects are stored. This table is dropped each time AmoreDA
261 //is initialised. This of course makes a problem if we would like to store different
262 //calibration entries in the AMORE DB. Therefore in each DA which writes to the AMORE DB
263 //the AMORE_DA_NAME env variable is overwritten.
264 const char *role=gSystem->Getenv("DATE_ROLE_NAME");
265 gSystem->Setenv("AMORE_DA_NAME",Form("%s-%s",role,FILE_ID));
266 //
267 // end cheet
268 if ( role ){
269 TDatime time;
270 TObjString info(Form("Run: %u; Date: %s",runNb,time.AsString()));
271
272 amore::da::AmoreDA amoreDA(amore::da::AmoreDA::kSender);
273 Int_t status=0;
274 status+=amoreDA.Send("Pedestals",calibPedestal.GetCalPadPedestal());
275 status+=amoreDA.Send("Noise",calibPedestal.GetCalPadRMS());
276 status+=amoreDA.Send("Info",&info);
277 if ( status )
278 printf("Waring: Failed to write one of the calib objects to the AMORE database\n");
279 // reset env var
280 if (amoreDANameorig) gSystem->Setenv("AMORE_DA_NAME",amoreDANameorig);
281 } else {
282 printf ("Warning: environment variable 'AMORE_DA_NAME' not set. Cannot write to the AMORE database\n");
283 }
f2c72763 284
285
ac940b58 286 if ( !timeAnalysis ){
287 printf("Skipping ASCII file preparation for local ALTRO configuration, as requested\n");
288 return status;
289 }
290
bdf99a93 291 //
49efac78 292 // Now prepare ASCII files for local ALTRO configuration through DDL.
bdf99a93 293 //
bdf99a93 294 ofstream pedfile;
295 ofstream noisefile;
296 ofstream pedmemfile;
ac940b58 297 ofstream noisychannelfile;
298
87d57858 299 char filename[255];
bdf99a93 300 sprintf(filename,"tpcPedestals.data");
301 pedfile.open(filename);
302 sprintf(filename,"tpcNoise.data");
303 noisefile.open(filename);
304 sprintf(filename,"tpcPedestalMem.data");
305 pedmemfile.open(filename);
ac940b58 306 sprintf(filename,"tpcNoisyChannels.data");
307 noisychannelfile.open(filename);
bdf99a93 308
49efac78 309 TArrayF **timePed = calibPedestal.GetTimePedestals(); // pedestal values for each time bin
87d57858 310
bdf99a93 311 Int_t ctr_channel = 0;
ac940b58 312 Int_t ctr_altro = 0;
bdf99a93 313 Int_t ctr_pattern = 0;
ac940b58 314 Int_t ctr_noisy = 0;
87d57858 315
ac940b58 316 pedfile << 10 << std::endl; // Mark file to contain PEDESTALS per channel
317 noisefile << 11 << std::endl; // Mark file to contain NOISE per altro
318 pedmemfile << 12 << std::endl; // Mark file to contain PEDESTALs per time bin
319 noisychannelfile << 14 << std::endl; // Mark file to contain NOISY CHANNELS
87d57858 320
bdf99a93 321 for ( Int_t roc = 0; roc < 72; roc++ ) {
322 if ( !calibPedestal.GetCalRocPedestal(roc) ) continue;
49efac78 323 Int_t side = mapping->GetSideFromRoc(roc);
324 Int_t sector = mapping->GetSectorFromRoc(roc);
bdf99a93 325 //printf("Analysing ROC %d (side %d, sector %d) ...\n", roc, side, sector);
49efac78 326 Int_t nru = mapping->IsIROC(roc) ? 2 : 4;
bdf99a93 327 for ( int rcu = 0; rcu < nru; rcu++ ) {
49efac78 328 Int_t patch = mapping->IsIROC(roc) ? rcu : rcu+2;
bdf99a93 329 for ( int branch = 0; branch < 2; branch++ ) {
ac940b58 330 for ( int fec = 0; fec < mapping->GetNfec(patch, branch); fec++ ) {
331 for ( int altro = 0; altro < 8; altro++ ) {
332 Float_t rms = 0.;
333 Float_t maxrms = 0.;
334 Float_t ctr_altrochannel = 0.;
335 for ( int channel = 0; channel < 16; channel++ ) {
336 Int_t hwadd = mapping->CodeHWAddress(branch, fec, altro, channel);
337 Int_t row = mapping->GetPadRow(patch, hwadd); // row in a ROC
338 Int_t globalrow = mapping->GetGlobalPadRow(patch, hwadd); // row in full sector
339 Int_t pad = mapping->GetPad(patch, hwadd);
340 Float_t ped = calibPedestal.GetCalRocPedestal(roc)->GetValue(row,pad);
341 // fixed pedestal
342 pedfile << ctr_channel++ << "\t" << side << "\t" << sector << "\t" << patch << "\t"
343 << hwadd << "\t" << ped << std::endl;
344 // pedestal(t)
345 if ( timePed && fabs(timePed[globalrow][pad].GetSum()) > 1e-10 ) {
346 pedmemfile << ctr_pattern++ << "\t" << side << "\t" << sector << "\t" << patch
347 << "\t" << hwadd;
348 for ( Int_t timebin = 0; timebin < 1024; timebin++ )
349 pedmemfile << "\t" << timePed[globalrow][pad].At(timebin);
350 pedmemfile << std::endl;
351 }
352 // rms=noise
353 Float_t rms2 = calibPedestal.GetCalRocRMS(roc)->GetValue(row,pad);
354 if ( fabs(ped) < 1.e-10 ) { // dead channel
355 noisychannelfile << ctr_noisy++ << "\t" << side << "\t" << sector << "\t"
356 << patch << "\t" << hwadd << "\t" << rms2 << std::endl;
357 } else if ( (ped > 1.e-10) && (rms2 > 1.e-10) ) { // not dead
358 // Find noisy channels
359 if ( ((roc<36) && (rms2 > 2.0)) || // IROC
360 ((roc>35) && (row<65) && (rms2 > 2.0)) || // OROC, small pads
361 ((roc>35) && (row>64) && (rms2 > 3.0)) ) { // OROC, large pads (50% more signal)
362 noisychannelfile << ctr_noisy++ << "\t" << side << "\t" << sector << "\t"
363 << patch << "\t" << hwadd << "\t" << rms2 << std::endl;
364 } else {
365 // Not noisy. Get average and maximum noise in this ALTRO
366 rms += rms2;
367 ctr_altrochannel += 1.;
368 if (rms2 > maxrms) maxrms = rms2;
369 } // end if noisy
370 } // end if some signal
371 } // end channel for loop
372 Int_t hwadd = mapping->CodeHWAddress(branch, fec, altro, 0); // ALTRO address
373 // Noise data (rms) averaged over all channels in this ALTRO.
374 if ( ctr_altrochannel > 1.e-10 ) {
375 /*
376 // average noise of this ALTRO (excluding high-noise channels)
377 noisefile << ctr_altro << "\t" << side << "\t" << sector << "\t" << patch << "\t"
378 << hwadd << "\t" << rms/ctr_altrochannel << std::endl;
379 */
380 // maximum noise of this ALTRO (excluding high-noise channels)
381 noisefile << ctr_altro << "\t" << side << "\t" << sector << "\t" << patch << "\t"
382 << hwadd << "\t" << maxrms << std::endl;
383 ctr_altro++;
384 }
385 } // end altro for loop
386 } // end fec for loop
bdf99a93 387 } // end branch for loop
388 } // end rcu for loop
389 } // end roc loop
ac940b58 390
bdf99a93 391 pedfile.close();
392 noisefile.close();
393 pedmemfile.close();
ac940b58 394 noisychannelfile.close();
395 printf("Wrote ASCII files. Found %d noisy channels.\n", ctr_noisy);
87d57858 396
c12208b8 397 return status;
ac940b58 398
c12208b8 399}