2 Contact: henrik.tydesjo@cern.ch
3 Link: tydes.home.cern.ch/tydes/doc/CalibrationOverview/CalibrationAlgorithms/
6 Number of events needed: Depending on muliplicity per event
7 Input Files: spd_physics_params , ./calibResults/DeadReferenceTmp/* , ./calibResults/DeadToFXS/*
8 Output Files: ./calibResults/NoisyReference/* , ./calibResults/DeadReference/* , ./calibResults/NoisyToFXS/* , ./calibResults/DeadReferenceTmp/*,./calibResults/DeadToFXS/*
9 Trigger types used: PHYSICS
12 ////////////////////////////////////////////////////////////////////////////////
13 // This program can be compiled in two modes. //
15 // 1. Online. With the DAQ DA framework. This is the default operating mode. //
17 // 2. Offline. Without the DAQ DA framework. Define the SPD_DA_OFF //
18 // environment var. Call this program with the name of the executable //
19 // followed by the runNr and the data files to process. //
21 ////////////////////////////////////////////////////////////////////////////////
30 #include "AliRawReaderDate.h"
31 #include "AliITSRawStreamSPD.h"
32 #include "AliITSOnlineSPDphys.h"
33 #include "AliITSOnlineSPDphysAnalyzer.h"
34 #include "AliITSOnlineCalibrationSPDhandler.h"
40 #include <TPluginManager.h>
41 #include <TObjArray.h>
42 #include <TObjString.h>
46 int main(int argc, char **argv) {
48 printf("SPD DA ERROR: Wrong number of arguments\n");
54 // directory structure, hard coded // FOR OFFLINE VERSION:
55 char *saveDirDead = "./calibResults/Dead"; // may NOT delete content
56 char *saveDirDeadToFXS = "./calibResults/DeadToFXS"; // may delete content
57 char *saveDirDeadRef = "./calibResults/DeadReference"; // may delete content
58 char *saveDirDeadRefTmp = "./calibResults/DeadReferenceTmp"; // may NOT delete content
59 char *saveDirNoisyToFXS = "./calibResults/NoisyToFXS"; // may delete content
60 char *saveDirNoisyRef = "./calibResults/NoisyReference"; // may delete content
61 char *saveDirIdsToFXS = "./calibResults/IdsToFXS"; // may delete content
62 char *configFilesDir = "./configFiles"; // may delete content
63 // clean up and make sure the directory structure is put up correctly:
65 system("rm ./calibResults -rf >& /dev/null");
66 system("rm ./ITS -rf >& /dev/null");
68 system("rm ./calibResults/DeadToFXS -rf >& /dev/null");
69 system("rm ./calibResults/DeadReference -rf >& /dev/null");
70 system("rm ./calibResults/NoisyToFXS -rf >& /dev/null");
71 system("rm ./calibResults/NoisyReference -rf >& /dev/null");
72 system("rm ./calibResults/IdsToFXS -rf >& /dev/null");
74 system("mkdir ./calibResults >& /dev/null");
75 system("mkdir ./calibResults/Dead >& /dev/null");
76 system("mkdir ./calibResults/DeadToFXS >& /dev/null");
77 system("mkdir ./calibResults/DeadReference >& /dev/null");
78 system("mkdir ./calibResults/DeadReferenceTmp >& /dev/null");
79 system("mkdir ./calibResults/NoisyToFXS >& /dev/null");
80 system("mkdir ./calibResults/NoisyReference >& /dev/null");
81 system("mkdir ./calibResults/IdsToFXS >& /dev/null");
82 system("mkdir ./configFiles >& /dev/null");
84 system("mkdir ./ITS >& /dev/null");
85 system("mkdir ./ITS/Calib >& /dev/null");
86 system("mkdir ./ITS/Calib/SPDNoisy >& /dev/null");
88 // parameters config file
89 TString paramsFileName = Form("%s/physics_params.txt",configFilesDir);
91 // This line is needed in case of a stand-alone application w/o
92 // $ROOTSYS/etc/system.rootrc file
93 gROOT->GetPluginManager()->AddHandler("TVirtualStreamerInfo",
99 // turn off annoying warning messages
100 // NB: Should not be handled here
101 AliLog logger = AliLog::GetRootLogger();
102 logger->SetGlobalDebugLevel(-20);
104 // ********* STEP 0: Get configuration files from db (if there are any) , then read parameters*********
105 UInt_t nrTuningParams = 0;
106 TObjArray paramNames; paramNames.SetOwner(kTRUE);
107 TObjArray paramVals; paramVals.SetOwner(kTRUE);
109 // tuning parameters:
110 Int_t par_status = 0;
112 TString idp = "spd_physics_params";
113 par_status=daqDA_DB_getFile(idp.Data(),paramsFileName.Data());
115 printf("SPD DA: Failed to get config file %s: status=%d. Using default tuning parameters.\n",idp.Data(),par_status);
116 TString rmCmd = Form("rm -f %s",paramsFileName.Data());
117 system(rmCmd.Data());
122 paramsFile.open(paramsFileName.Data(), ifstream::in);
123 if (paramsFile.fail()) {
124 printf("SPD DA: No config file (%s) present. Using default tuning parameters.\n",paramsFileName.Data());
130 paramsFile >> paramN;
131 if (paramsFile.eof()) break;
132 paramsFile >> paramV;
133 paramNames.AddAtAndExpand(new TObjString(paramN),nrTuningParams);
134 paramVals.AddAtAndExpand(new TObjString(paramV),nrTuningParams);
136 if (paramsFile.eof()) break;
141 // for (UInt_t i=0; i<nrTuningParams; i++) {
142 // // printf("Entry %d: N=%s , V=%s\n",i,((TString*)paramNames.At(i))->Data(),((TString*)paramVals.At(i))->Data());
143 // printf("Entry %d: N=%s , V=%s\n",i,((TObjString*)paramNames.At(i))->GetString().Data(),((TObjString*)paramVals.At(i))->GetString().Data());
150 // create calibration handler (needed already at step 1 in order to fill which eq,hs,chips are active
151 AliITSOnlineCalibrationSPDhandler* handler = new AliITSOnlineCalibrationSPDhandler();
153 // Read silent=dead+inactive info from previous calibrations
155 for (UInt_t eq=0; eq<20; eq++) {
156 Int_t getPreviousDead_status = 0;
157 TString idpd = Form("spd_previous_dead_%d",eq);
158 TString fileName = Form("%s/SPD_Dead_%d.root",saveDirDead,eq);
159 getPreviousDead_status = daqDA_DB_getFile(idpd.Data(),fileName.Data());
160 // printf("daqDA_DB_getFile(%s,%s)\n",idpd.Data(),fileName.Data());
161 if (getPreviousDead_status) {
162 printf("SPD DA: Failed to get dead file %s: status=%d. Dead search will start from zero for this eq.\n",idpd.Data(),getPreviousDead_status);
163 TString rmCmd = Form("rm -f %s",fileName.Data());
164 system(rmCmd.Data());
168 handler->SetFileLocation(saveDirDead);
169 handler->ReadSilentFromFiles();
170 printf("SPD DA: Number of single dead pixels from previous runs: %d\n",handler->GetNrDead());
172 // Read hit-maps from previous runs
174 for (UInt_t eq=0; eq<20; eq++) {
175 Int_t getPreviousHitmap_status = 0;
176 TString idph = Form("spd_previous_hitmap_%d",eq);
177 TString fileName = Form("%s/SPDphys_dead_run_0_0_eq_%d.root",saveDirDeadRefTmp,eq);
178 getPreviousHitmap_status = daqDA_DB_getFile(idph.Data(),fileName.Data());
179 // printf("daqDA_DB_getFile(%s,%s)\n",idph.Data(),fileName.Data());
180 if (getPreviousHitmap_status) {
181 printf("SPD DA: Failed to get previous hitmap file %s: status=%d. Dead search will start with empty hitmap for this eq.\n",idph.Data(),getPreviousHitmap_status);
182 TString rmCmd = Form("rm -f %s",fileName.Data());
183 system(rmCmd.Data());
191 // ********* STEP 1: Produce phys container files (Reference Data). ***********************************
194 if (getenv("DATE_RUN_NUMBER")==0) {
195 printf("SPD DA ERROR: DATE_RUN_NUMBER not properly set.\n");
198 int runNr = atoi(getenv("DATE_RUN_NUMBER"));
200 int runNr = atoi(argv[1]);
206 AliITSOnlineSPDphys *physObj[20];
207 Bool_t bPhysInit[20];
208 for (UInt_t eq=0; eq<20; eq++) {
210 bPhysInit[eq]=kFALSE;
216 // loop over run segments in case of offline mode
218 for (int segNr=startSeg; segNr<argc; segNr++) {
223 /* define data source : */
225 status=monitorSetDataSource( argv[1] ); // should be "^SPD" in order to get full detector online
227 status=monitorSetDataSource( argv[segNr] );
230 printf("SPD DA ERROR: monitorSetDataSource() failed : %s\n",monitorDecodeError(status));
233 /* declare monitoring program */
234 status=monitorDeclareMp("ITS_SPD_PHYS");
236 printf("SPD DA ERROR: monitorDeclareMp() failed : %s\n",monitorDecodeError(status));
239 /* define wait event timeout - 1s max */
241 monitorSetNoWaitNetworkTimeout(1000);
244 /* main loop (infinite) */
247 struct eventHeaderStruct *event;
248 eventTypeType eventT;
250 /* check shutdown condition */
252 if (daqDA_checkShutdown()) {break;}
255 /* get next event (blocking call until timeout) */
256 status=monitorGetEventDynamic((void **)&event);
257 if (status==MON_ERR_EOF) {
258 printf ("SPD DA: End of File detected\n");
259 break; /* end of monitoring file has been reached */
263 printf("SPD DA: monitorGetEventDynamic() failed : %s\n",monitorDecodeError(status));
267 /* retry if got no event */
272 eventT=event->eventType;
273 if (eventT == PHYSICS_EVENT){
275 // printf("eventNr %d\n",eventNr);
277 AliRawReader *reader = new AliRawReaderDate((void*)event);
278 AliITSRawStreamSPD *str = new AliITSRawStreamSPD(reader);
280 while (str->Next()) {
282 Int_t eq = reader->GetDDLID();
283 // check that this hs is active in handler object
284 if (!(handler->IsActiveEq(eq))) {
285 printf("SPD DA: Found Eq (%d) , previously inactive\n",eq);
286 handler->ActivateEq(eq);
288 if (eq>=0 && eq<20) {
289 if (!bPhysInit[eq]) { // this code is duplicated for the moment... (see also below)
290 TString fileName = Form("%s/SPDphys_run_%d_eq_%d.root",saveDirNoisyRef,runNr,eq);
291 physObj[eq] = new AliITSOnlineSPDphys(fileName.Data());
292 physObj[eq]->AddRunNr(runNr);
293 physObj[eq]->SetEqNr(eq);
297 UInt_t hs = str->GetHalfStaveNr();
298 // check that this hs is active in handler object
299 if (!(handler->IsActiveHS(eq,hs))) {
300 printf("SPD DA: Found HS (%d,%d) , previously inactive\n",eq,hs);
301 handler->ActivateHS(eq,hs);
303 UInt_t chip = str->GetChipAddr();
304 // check that this chip is active in handler object
305 if (!(handler->IsActiveChip(eq,hs,chip))) {
306 printf("SPD DA: Found Chip (%d,%d,%d) , previously inactive\n",eq,hs,chip);
307 handler->ActivateChip(eq,hs,chip);
309 physObj[eq]->IncrementHits(hs,chip,str->GetChipCol(),str->GetChipRow());
315 // check which eq and hs are active, for first event only
317 for (UInt_t eq=0; eq<20; eq++) {
318 // activate Eq and HSs in handler object
319 if (str->IsActiveEq(eq)) {
320 handler->ActivateEq(eq);
321 for (UInt_t hs=0; hs<6; hs++) {
322 if (str->IsActiveHS(eq,hs)) {
323 handler->ActivateHS(eq,hs);
324 for (UInt_t chip=0; chip<10; chip++) {
325 if (str->IsActiveChip(eq,hs,chip)) {
326 handler->ActivateChip(eq,hs,chip);
329 handler->ActivateChip(eq,hs,chip,kFALSE);
334 handler->ActivateHS(eq,hs,kFALSE);
337 if (!bPhysInit[eq]) { // this code is duplicated for the moment... (see also above)
338 TString fileName = Form("%s/SPDphys_run_%d_eq_%d.root",saveDirNoisyRef,runNr,eq);
339 physObj[eq] = new AliITSOnlineSPDphys(fileName.Data());
340 physObj[eq]->AddRunNr(runNr);
341 physObj[eq]->SetEqNr(eq);
346 handler->ActivateEq(eq,kFALSE);
352 for (UInt_t eq=0; eq<20; eq++) {
354 physObj[eq]->IncrementNrEvents();
372 printf("SPD DA: progress: %d\n",(unsigned int)( ((Float_t)(segNr-startSeg+1))/(argc-startSeg)*50 ));
376 // clean up phys objects (also saves them)
377 for (UInt_t eq=0; eq<20; eq++) {
378 if (physObj[eq]!=NULL) delete physObj[eq];
381 printf("SPD DA: %d events collected for this run.\n",eventNr);
386 // ********* STEP 2: Analyze phys container files. ************************************************
388 time_t timeStamp = time(NULL);
389 // printf("*** Start step2 , %d\n",time(NULL) - timeStamp);
391 UInt_t firstRunNrDead = runNr;
394 UInt_t nrEnoughStatNoisy = 0;
395 UInt_t nrEqActiveNoisy = 0;
396 Bool_t eqActiveNoisy[20];
398 // *** *** *** start loop over equipments (eq_id)
399 for (UInt_t eq=0; eq<20; eq++) {
400 eqActiveNoisy[eq] = kFALSE;
402 // create analyzer for this eq
403 TString fileName = Form("%s/SPDphys_run_%d_eq_%d.root",saveDirNoisyRef,runNr,eq);
404 AliITSOnlineSPDphysAnalyzer *noisyAnalyzer = new AliITSOnlineSPDphysAnalyzer(fileName.Data(),handler);
406 // check data in container
407 if (noisyAnalyzer->GetEqNr() != eq) {
408 if (noisyAnalyzer->GetEqNr() != 999) {
409 printf("SPD DA ERROR: Mismatching EqId in Container data and filename (%d!=%d). Skipping eq.\n",noisyAnalyzer->GetEqNr(),eq);
411 delete noisyAnalyzer;
416 eqActiveNoisy[eq] = kTRUE;
418 // configure analyzer with tuning parameters etc:
419 for (UInt_t i=0; i<nrTuningParams; i++) {
420 noisyAnalyzer->SetParam(((TObjString*)paramNames.At(i))->GetString().Data(),((TObjString*)paramVals.At(i))->GetString().Data());
423 printf("SPD DA: SPD phys STEP 2: Noisy search for eq %d\n",eq);
425 // search for noisy pixels:
426 nrEnoughStatNoisy += noisyAnalyzer->ProcessNoisyPixels();
428 // copy this phys obj to temporary dead reference dir to process after noisy search
429 TString fileNameDead = Form("%s/SPDphys_dead_run_0_0_eq_%d.root",saveDirDeadRefTmp,eq);
430 AliITSOnlineSPDphys* physObj = new AliITSOnlineSPDphys(fileNameDead.Data());
431 physObj->AddPhys(noisyAnalyzer->GetOnlinePhys());
432 if (physObj->GetNrRuns()>0) {
433 UInt_t firstRunNr = physObj->GetRunNr(0);
434 if (firstRunNrDead>firstRunNr) {
435 firstRunNrDead=firstRunNr;
438 // remove noisy pixels from dead hitmap
439 for (UInt_t hs=0; hs<6; hs++) {
440 for (UInt_t chip=0; chip<10; chip++) {
441 for (UInt_t ind=0; ind<handler->GetNrNoisyC(eq,hs,chip); ind++) {
442 UInt_t col = handler->GetNoisyColAtC(eq,hs,chip,ind);
443 UInt_t row = handler->GetNoisyRowAtC(eq,hs,chip,ind);
444 physObj->AddHits(hs,chip,col,row,-noisyAnalyzer->GetOnlinePhys()->GetHits(hs,chip,col,row));
450 delete noisyAnalyzer;
453 // daqDA_progressReport((unsigned int)((eq+1)*2.5));
454 printf("SPD DA: progress: %d , %ld\n",(unsigned int)(50+(eq+1)*2.5), time(NULL) - timeStamp);
456 // printf("SPD DA: progress: %d\n",(unsigned int)(50+(eq+1)*1.25));
457 printf("SPD DA: progress: %d , %ld\n",(unsigned int)(50+(eq+1)*1.25), time(NULL) - timeStamp);
460 // *** *** *** end loop over equipments (eq_id)
462 printf("SPD DA: Noisy search finished. %d noisy pixels found. %d chips had enough statistics.\n",
463 handler->GetNrNoisy(),nrEnoughStatNoisy);
464 handler->SetFileLocation(saveDirNoisyToFXS);
465 UInt_t nrNoisyFilesProduced = handler->WriteNoisyToFiles();
467 // save noisy to local OCDB
468 handler->WriteNoisyToDB(runNr,9999999,".");
469 // store local OCDB file in daq Det DB
470 TString ocdb_fileName = Form("./ITS/Calib/SPDNoisy/Run%d_9999999_v0_s0.root",runNr);
471 TString idod = "spd_noisy_ocdb";
472 Int_t ocdb_store_status = daqDA_DB_storeFile(ocdb_fileName.Data(),idod.Data());
473 // printf("daqDA_DB_storeFile(%s,%s)\n",ocdb_fileName.Data(),idod.Data());
474 if (ocdb_store_status) {
475 printf("SPD DA ERROR: Failed to store noisy ocdb file %s in daqDetDB: status=%d.\n",idod.Data(),ocdb_store_status);
483 UInt_t nrEnoughStatChips = 0;
484 UInt_t nrDeadChips = 0;
485 UInt_t nrInefficientChips = 0;
486 UInt_t nrEqActiveDead = 0;
487 Bool_t eqActiveDead[20];
489 // *** *** *** start loop over equipments (eq_id)
490 for (UInt_t eq=0; eq<20; eq++) {
491 eqActiveDead[eq] = kFALSE;
493 // setup analyzer for dead search
494 TString fileNameDead = Form("%s/SPDphys_dead_run_0_0_eq_%d.root",saveDirDeadRefTmp,eq);
495 AliITSOnlineSPDphys* physObj = new AliITSOnlineSPDphys(fileNameDead.Data());
496 AliITSOnlineSPDphysAnalyzer* deadAnalyzer = new AliITSOnlineSPDphysAnalyzer(physObj,handler);
497 // check data in container
498 if (deadAnalyzer->GetEqNr() != eq) {
499 if (deadAnalyzer->GetEqNr() != 999) {
500 printf("SPD DA ERROR: Mismatching EqId in Dead Container data and filename (%d!=%d). Skipping eq.\n",deadAnalyzer->GetEqNr(),eq);
503 nrDeadChips+=60; // since this eq is inactive...
508 eqActiveDead[eq] = kTRUE;
510 // configure analyzer with tuning parameters etc:
511 for (UInt_t i=0; i<nrTuningParams; i++) {
512 deadAnalyzer->SetParam(((TObjString*)paramNames.At(i))->GetString().Data(),((TObjString*)paramVals.At(i))->GetString().Data());
515 UInt_t nrEventsCollected = physObj->GetNrEvents();
516 printf("SPD DA: SPD phys STEP 2: Dead search for eq %d (%d events)\n",eq,nrEventsCollected);
518 // search for dead pixels:
519 nrEnoughStatChips += deadAnalyzer->ProcessDeadPixels();
520 nrDeadChips += deadAnalyzer->GetNrDeadChips();
521 nrInefficientChips += deadAnalyzer->GetNrInefficientChips();
527 // daqDA_progressReport((unsigned int)(50+(eq+1)*2.5));
528 printf("SPD DA: progress: %d , %ld\n",(unsigned int)(50+(eq+1)*2.5), time(NULL) - timeStamp);
530 // printf("SPD DA: progress: %d\n",(unsigned int)(75+(eq+1)*1.25));
531 printf("SPD DA: progress: %d , %ld\n",(unsigned int)(75+(eq+1)*1.25), time(NULL) - timeStamp);
534 // *** *** *** end loop over equipments (eq)
539 printf("SPD DA: Dead search finished.\n");
540 printf("SPD DA: %d single dead pixels , %d dead or inactive pixels in total.\n",handler->GetNrDead(),handler->GetNrSilent());
541 printf("SPD DA: %d chips had enough statistics. %d chips are dead. %d chips are inefficient.\n",nrEnoughStatChips,nrDeadChips,nrInefficientChips);
542 handler->SetFileLocation(saveDirDead);
543 handler->WriteSilentToFilesAlways();
544 handler->SetFileLocation(saveDirDeadToFXS);
545 handler->WriteSilentToFilesAlways();
548 // printf("SPD DA: Opening id list file\n");
549 printf("SPD DA: Opening id list file , %ld\n",time(NULL) - timeStamp);
550 TString idsFXSFileName = Form("%s/FXSids_run_%d.txt",saveDirIdsToFXS,runNr);
552 idsFXSfile.open(idsFXSFileName.Data());
555 // store dead+inactive pixels in DB, used as starting point for later runs
557 printf("store previous dead in DB , %ld\n",time(NULL) - timeStamp);
558 for (UInt_t eq=0; eq<20; eq++) {
559 Int_t storePreviousDead_status = 0;
560 TString idpd = Form("spd_previous_dead_%d",eq);
561 TString fileName = Form("%s/SPD_Dead_%d.root",saveDirDead,eq);
562 storePreviousDead_status = daqDA_DB_storeFile(fileName.Data(),idpd.Data());
563 // printf("daqDA_DB_storeFile(%s,%s)\n",fileName.Data(),idpd.Data());
564 if (storePreviousDead_status) {
565 printf("SPD DA ERROR: Failed to store dead file %s in daqDetDB: status=%d.\n",idpd.Data(),storePreviousDead_status);
571 // send (dead) reference data for this run to FXS - only if there is no chip in category "needsMoreStat"
572 if (nrEnoughStatChips>0 && nrEnoughStatChips+nrDeadChips+nrInefficientChips == 1200) {
573 printf("SPD DA: Dead calibration is complete.\n");
574 printf("SPD DA: Preparing dead reference data\n");
575 // send reference data for dead pixels to FXS
576 TString tarFiles = "";
577 for (UInt_t eq=0; eq<20; eq++) {
578 if (eqActiveDead[eq]) {
579 printf("SPD DA: Preparing dead pixels for eq %d\n",eq);
580 // move file to ref dir
581 TString fileName = Form("%s/SPDphys_dead_run_0_0_eq_%d.root",saveDirDeadRefTmp,eq);
582 TString newFileName = Form("%s/SPDphys_dead_run_%d_%d_eq_%d.root",saveDirDeadRef,firstRunNrDead,runNr,eq);
583 TString command = Form("mv -f %s %s",fileName.Data(),newFileName.Data());
584 system(command.Data());
585 tarFiles.Append(Form("SPDphys_dead_run_%d_%d_eq_%d.root ",firstRunNrDead,runNr,eq));
586 // create empty hitmap file to send to DB later
587 AliITSOnlineSPDphys* physObj = new AliITSOnlineSPDphys(fileName.Data());
588 physObj->SetEqNr(eq);
592 if (tarFiles.Length() > 0) { // make sure there are some files to send
593 TString send_command = Form("cd %s; tar -cf ref_phys_dead.tar %s",saveDirDeadRef,tarFiles.Data());
594 system(send_command.Data());
595 TString fileName = Form("%s/ref_phys_dead.tar",saveDirDeadRef);
596 TString id = "SPD_ref_phys_dead";
598 status = daqDA_FES_storeFile(fileName.Data(),id.Data());
600 printf("SPD DA ERROR: Failed to export file %s , status %d\n",fileName.Data(),status);
604 idsFXSfile << Form("%s\n",id.Data());
608 // store hitmaps (maybe empty) in DB, used as starting point for later runs:
610 printf("store previous hitmaps in DB , %ld\n",time(NULL) - timeStamp);
611 for (UInt_t eq=0; eq<20; eq++) {
612 Int_t storePreviousHitmap_status = 0;
613 TString idph = Form("spd_previous_hitmap_%d",eq);
614 TString fileName = Form("%s/SPDphys_dead_run_0_0_eq_%d.root",saveDirDeadRefTmp,eq);
615 storePreviousHitmap_status = daqDA_DB_storeFile(fileName.Data(),idph.Data());
616 // printf("daqDA_DB_storeFile(%s,%s)\n",fileName.Data(),idph.Data());
617 if (storePreviousHitmap_status) {
618 printf("SPD DA ERROR: Failed to store hitmap file %s in daqDetDB: status=%d.\n",idph.Data(),storePreviousHitmap_status);
625 // send (noisy) reference data for this run to FXS
626 // printf("SPD DA: Preparing physics reference data for this run\n");
627 printf("SPD DA: Preparing physics reference data for this run , %ld\n",time(NULL) - timeStamp);
628 TString tarFiles = "";
629 for (UInt_t eq=0; eq<20; eq++) {
630 if (eqActiveNoisy[eq]) {
631 tarFiles.Append(Form("SPDphys_run_%d_eq_%d.root ",runNr,eq));
634 if (tarFiles.Length() > 0) { // make sure there are any files to send
635 TString send_command = Form("cd %s; tar -cf ref_phys.tar %s",saveDirNoisyRef,tarFiles.Data());
636 system(send_command.Data());
637 TString fileName = Form("%s/ref_phys.tar",saveDirNoisyRef);
638 TString id = "SPD_ref_phys";
640 status = daqDA_FES_storeFile(fileName.Data(),id.Data());
642 printf("SPD DA ERROR: Failed to export file %s , status %d\n",fileName.Data(),status);
646 idsFXSfile << Form("%s\n",id.Data());
651 // send dead pixels to FXS
652 // printf("SPD DA: Preparing dead files for FXS\n");
653 printf("SPD DA: Preparing dead files for FXS , %ld\n",time(NULL) - timeStamp);
654 // send a tared file of all the dead files
655 TString send_command = Form("cd %s; tar -cf dead_phys.tar *",saveDirDeadToFXS);
656 // printf("\n\n%s\n\n",command.Data());
657 system(send_command.Data());
658 TString fileName = Form("%s/dead_phys.tar",saveDirDeadToFXS);
659 TString id = "SPD_phys_dead";
661 Int_t send_status = daqDA_FES_storeFile(fileName.Data(),id.Data());
662 if (send_status!=0) {
663 printf("SPD DA ERROR: Failed to export file %s , status %d\n",fileName.Data(),send_status);
667 idsFXSfile << Form("%s\n",id.Data());
671 // send noisy pixels to FXS
672 if (nrNoisyFilesProduced > 0) { // make sure there is at least one file created
673 // printf("SPD DA: Preparing noisy files for FXS\n");
674 printf("SPD DA: Preparing noisy files for FXS , %ld\n",time(NULL) - timeStamp);
675 // send a tared file of all the noisy files
676 TString command = Form("cd %s; tar -cf noisy_phys.tar *",saveDirNoisyToFXS);
677 // printf("\n\n%s\n\n",command.Data());
678 system(command.Data());
679 TString fileName = Form("%s/noisy_phys.tar",saveDirNoisyToFXS);
680 TString id = "SPD_phys_noisy";
682 status = daqDA_FES_storeFile(fileName.Data(),id.Data());
684 printf("SPD DA ERROR: Failed to export file %s , status %d\n",fileName.Data(),status);
688 idsFXSfile << Form("%s\n",id.Data());
693 // send ids file to FXS
697 status = daqDA_FES_storeFile(idsFXSFileName.Data(),id.Data());
699 printf("SPD DA ERROR: Failed to export file %s , status %d\n",idsFXSFileName.Data(),status);
709 printf("SPD DA: End of all operations, %d errors, %ld\n", nrErrors, time(NULL) - timeStamp);
711 if (nrErrors>0) return -1;