10 |
#include <TSQLServer.h> |
#include <TSQLServer.h> |
11 |
#include <TFile.h> |
#include <TFile.h> |
12 |
#include <TSystem.h> |
#include <TSystem.h> |
13 |
|
#include <TStopwatch.h> |
14 |
// |
// |
15 |
// Detector's package headers |
// Detector's package headers |
16 |
// |
// |
35 |
// |
// |
36 |
void usage(){ |
void usage(){ |
37 |
printf("\nUsage:\n"); |
printf("\nUsage:\n"); |
38 |
printf("\n DarthVader [-v | --verbose] [-h | --help] [--version] -idRun ID_RUN [-processFile filename]\n"); |
printf("\n DarthVader [ options ] -idRun ID_RUN [+-all] [+-detector [ detector options ] ] \n"); |
39 |
printf("\n [-host host] [-user username] [-psw password] [+-all] [+-detector [ detector options ] ]\n"); |
printf("\n Options are: \n\n"); |
40 |
printf("\n --version print informations about compilation and exit\n"); |
printf(" --version print informations about compilation and exit\n"); |
41 |
printf("\n -h | --help print this help and exit \n"); |
printf(" -h | --help print this help and exit \n"); |
42 |
printf("\n -v | --verbose be verbose [default: print nothing on STDOUT]\n"); |
printf(" -v | --verbose be verbose [default]\n"); |
43 |
printf("\n -idRun ID_RUN: ID number of the run to be processed \n"); |
printf(" -s | --silent print nothing on STDOUT\n"); |
44 |
printf("\n -processFile output filename [default ID_RUN.Level2.root]\n"); |
printf(" -c | --clean remove file if exiting with errors\n"); |
45 |
printf("\n -host name for the host [default = mysql://localhost/pamelaprod]\n"); |
printf(" -b | --benchmark perform and print a benchmark test\n"); |
46 |
printf("\n -user username for the DB [default = anonymous] \n"); |
printf(" -auto | -AUTO exclude from processing detector which are NOT in the acquisition [default]\n"); |
47 |
printf("\n -psw password for the DB [default = \"\"]\n"); |
printf(" -zerofill if a detector is not in the acquisition the routine is called anyway \n"); |
48 |
printf("\n +all | +ALL call all detectors software [default]\n"); |
printf(" but all detector's data will be marked as bad\n"); |
49 |
printf("\n -all | -ALL call nothing\n"); |
printf(" -tedious exit with error if a detector is not in the acquisition and \n"); |
50 |
printf("\n +detector process detector; detector can be: TOF,TRK,CAL,TRG,ORB,S4,ND,AC,RUN\n"); |
printf(" it has not been excluded from processing\n"); |
51 |
printf("\n -detector do not process detector (as above)\n"); |
printf(" -host name of the DB host [default = $PAM_DBHOST or mysql://localhost/pamelaprod]\n"); |
52 |
printf("\n detector options must be included in square parenthesis with spaces, for example:\n"); |
printf(" -user username for the DB connection [default = $PAM_DBUSER or \"anonymous\"] \n"); |
53 |
printf("\n +CAL [ --verbose -g ] +TRK [ -v --level1 ] \n"); |
printf(" -psw password for the DB connection [default = $PAM_DBPSW or \"\"]\n"); |
54 |
|
printf(" -idRun ID_RUN ID number (from the DB) of the run to be processed \n"); |
55 |
printf("\nExamples: \n"); |
printf(" -processFile file output filename [default ID_RUN.Level2.root]\n"); |
56 |
printf("\nStandard call: DarthVader -idRun 1085 \n"); |
printf(" +all | +ALL call all detectors software [default]\n"); |
57 |
printf("\nProcess only RunInfo and Tracker (be verbose for tracker): DarthVader -idRun 1085 -all +RUN +TRK [ --verbose ] \n"); |
printf(" -all | -ALL call nothing\n"); |
58 |
printf("\nProcess all and be verbose for calorimeter: DarthVader -idRun 1085 +CAL [ --verbose ] \n\n"); |
printf(" +detector process detector; detector can be: TOF,TRK,CAL,TRG,ORB,S4,ND,AC,RUN\n"); |
59 |
|
printf(" -detector do not process detector (as above)\n"); |
60 |
|
printf(" detector options must be included in square parenthesis with spaces, for example:\n"); |
61 |
|
printf(" +CAL [ --verbose -g ] +TRK [ -v --level1 ] \n"); |
62 |
|
printf("\n Examples: \n"); |
63 |
|
printf(" Standard call:\n DarthVader -idRun 1085 \n"); |
64 |
|
printf(" Process only RunInfo and Tracker (be verbose for tracker):\n DarthVader -idRun 1085 -all +RUN +TRK [ --verbose ] \n"); |
65 |
|
printf(" Process all and be verbose for calorimeter:\n DarthVader -idRun 1085 +CAL [ --verbose ] \n\n"); |
66 |
}; |
}; |
67 |
// |
// |
68 |
// Here the main |
// Here the main |
71 |
// |
// |
72 |
// Variables booking |
// Variables booking |
73 |
// |
// |
74 |
|
// |
75 |
|
// benchmarck variables |
76 |
|
// |
77 |
|
TStopwatch timer; |
78 |
|
TStopwatch dvtimer; |
79 |
|
dvtimer.Start(kTRUE); |
80 |
|
UInt_t nevents = 0; |
81 |
|
UInt_t nruns = 0; |
82 |
|
Double_t runtime = 0.; |
83 |
|
Double_t cruntime = 0.; |
84 |
|
Double_t trktime = 0.; |
85 |
|
Double_t ctrktime = 0.; |
86 |
|
Double_t caltime = 0.; |
87 |
|
Double_t ccaltime = 0.; |
88 |
|
Double_t toftime = 0.; |
89 |
|
Double_t ctoftime = 0.; |
90 |
|
Double_t trgtime = 0.; |
91 |
|
Double_t ctrgtime = 0.; |
92 |
|
Double_t actime = 0.; |
93 |
|
Double_t cactime = 0.; |
94 |
|
Double_t s4time = 0.; |
95 |
|
Double_t cs4time = 0.; |
96 |
|
Double_t ndtime = 0.; |
97 |
|
Double_t cndtime = 0.; |
98 |
|
Double_t orbtime = 0.; |
99 |
|
Double_t corbtime = 0.; |
100 |
|
Double_t dvtime = 0.; |
101 |
|
Double_t cdvtime = 0.; |
102 |
|
// |
103 |
TString message; |
TString message; |
104 |
int nul = 0; |
int nul = 0; |
105 |
Int_t error = 0; |
Int_t error = 0; |
113 |
Int_t ACSGN = 0; |
Int_t ACSGN = 0; |
114 |
Int_t S4SGN = 0; |
Int_t S4SGN = 0; |
115 |
Int_t NDSGN = 0; |
Int_t NDSGN = 0; |
116 |
|
Int_t DVSGN = 0; |
117 |
// |
// |
118 |
|
Bool_t autom = true; |
119 |
|
Bool_t zerofill = false; |
120 |
|
Bool_t tedious = false; |
121 |
|
Bool_t remfile = false; |
122 |
Bool_t debug = false; |
Bool_t debug = false; |
123 |
Bool_t beverbose = false; |
Bool_t beverbose = true; |
124 |
Bool_t givenid = false; |
Bool_t givenid = false; |
125 |
|
Bool_t bench = false; |
126 |
Bool_t CAL = true; |
Bool_t CAL = true; |
127 |
Bool_t TRK = true; |
Bool_t TRK = true; |
128 |
Bool_t TRG = true; |
Bool_t TRG = true; |
131 |
Bool_t ND = true; |
Bool_t ND = true; |
132 |
Bool_t AC = true; |
Bool_t AC = true; |
133 |
Bool_t ORB = true; |
Bool_t ORB = true; |
134 |
Bool_t RUN = true; |
Bool_t RUN = true; |
135 |
// |
// |
136 |
Int_t calargc = 0; |
Int_t calargc = 0; |
137 |
char *calargv[50]; |
char *calargv[50]; |
164 |
TString user = "anonymous"; |
TString user = "anonymous"; |
165 |
TString psw = ""; |
TString psw = ""; |
166 |
// |
// |
167 |
|
// |
168 |
|
const char *pamdbhost=gSystem->Getenv("PAM_DBHOST"); |
169 |
|
const char *pamdbuser=gSystem->Getenv("PAM_DBUSER"); |
170 |
|
const char *pamdbpsw=gSystem->Getenv("PAM_DBPSW"); |
171 |
|
if ( !pamdbhost ) pamdbhost = ""; |
172 |
|
if ( !pamdbuser ) pamdbuser = ""; |
173 |
|
if ( !pamdbpsw ) pamdbpsw = ""; |
174 |
|
if ( strcmp(pamdbhost,"") ) host = pamdbhost; |
175 |
|
if ( strcmp(pamdbuser,"") ) user = pamdbuser; |
176 |
|
if ( strcmp(pamdbpsw,"") ) psw = pamdbpsw; |
177 |
|
// |
178 |
|
// |
179 |
TFile *processFile = 0; |
TFile *processFile = 0; |
180 |
// |
// |
181 |
// Checking input parameters |
// Checking input parameters |
252 |
found = true; |
found = true; |
253 |
beverbose = true; |
beverbose = true; |
254 |
}; |
}; |
255 |
// |
if ( !strcmp(inps[i],"-c") || !strcmp(inps[i],"--clean")){ |
256 |
|
found = true; |
257 |
|
remfile = true; |
258 |
|
}; |
259 |
|
if ( !strcmp(inps[i],"-s") || !strcmp(inps[i],"--silent") ){ |
260 |
|
found = true; |
261 |
|
beverbose = false; |
262 |
|
}; |
263 |
if ( !strcmp(inps[i],"-g") || !strcmp(inps[i],"--debug") ){ |
if ( !strcmp(inps[i],"-g") || !strcmp(inps[i],"--debug") ){ |
264 |
debug = true; |
debug = true; |
265 |
found = true; |
found = true; |
266 |
}; |
}; |
267 |
|
if ( !strcmp(inps[i],"-b") || !strcmp(inps[i],"--benchmark") ){ |
268 |
|
bench = true; |
269 |
|
found = true; |
270 |
|
}; |
271 |
|
if ( !strcmp(inps[i],"-auto") || !strcmp(inps[i],"-AUTO") ){ |
272 |
|
autom = true; |
273 |
|
tedious = false; |
274 |
|
zerofill = false; |
275 |
|
found = true; |
276 |
|
}; |
277 |
|
if ( !strcmp(inps[i],"-zerofill") ){ |
278 |
|
tedious = false; |
279 |
|
autom = false; |
280 |
|
zerofill = true; |
281 |
|
found = true; |
282 |
|
}; |
283 |
|
if ( !strcmp(inps[i],"-tedious") ){ |
284 |
|
tedious = true; |
285 |
|
zerofill = false; |
286 |
|
autom = false; |
287 |
|
found = true; |
288 |
|
}; |
289 |
// |
// |
290 |
if ( !strcmp(inps[i],"-CAL") ) { |
if ( !strcmp(inps[i],"-CAL") ) { |
291 |
found = true; |
found = true; |
540 |
// |
// |
541 |
if ( !givenid ) throw -1; |
if ( !givenid ) throw -1; |
542 |
// |
// |
543 |
char *version = DarthVaderInfo(false); |
TString version = DarthVaderInfo(false); |
544 |
// |
// |
545 |
// Start: |
// Start: |
546 |
// |
// |
547 |
printf("\n Welcome to the PAMELA LEVEL2 flight software, version %s \n\n",version); |
printf("\n Welcome to the PAMELA LEVEL2 flight software, version %s \n\n",version.Data()); |
548 |
|
if ( run ) printf("\n Processing run number %u \n\n",run); |
549 |
// |
// |
550 |
// Connect to the DB |
// Connect to the DB |
551 |
// |
// |
554 |
dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
dbc = TSQLServer::Connect(host.Data(),user.Data(),psw.Data()); |
555 |
if( !dbc ) throw -2; |
if( !dbc ) throw -2; |
556 |
// |
// |
557 |
bool connect = dbc->IsConnected(); |
Bool_t connect = dbc->IsConnected(); |
558 |
// |
// |
559 |
if( !connect ) throw -2; |
if( !connect ) throw -2; |
560 |
// |
// |
561 |
if ( debug ) printf("...connected! \n\n"); |
if ( debug ) printf("...connected! \n\n"); |
562 |
// |
// |
563 |
|
if ( debug ) printf("\n DB INFORMATIONS:\n SQL: %s Version: %s Host %s Port %i \n\n",dbc->GetDBMS(),dbc->ServerInfo(),dbc->GetHost(),dbc->GetPort()); |
564 |
|
// |
565 |
|
// Use UTC in the DB |
566 |
|
// |
567 |
|
stringstream myquery; |
568 |
|
myquery.str(""); |
569 |
|
myquery << "SET time_zone='+0:00'"; |
570 |
|
dbc->Query(myquery.str().c_str()); |
571 |
|
// |
572 |
|
// |
573 |
// Create LEVEL2 filename and open it in update mode |
// Create LEVEL2 filename and open it in update mode |
574 |
// |
// |
575 |
if ( filename.IsNull() ){ |
if ( filename.IsNull() ){ |
581 |
filename += strun.str(); |
filename += strun.str(); |
582 |
filename += ".Level2.root"; |
filename += ".Level2.root"; |
583 |
}; |
}; |
|
// filename = outDir + "/" + filename; |
|
584 |
processFile = new TFile(filename.Data(),"UPDATE"); |
processFile = new TFile(filename.Data(),"UPDATE"); |
585 |
if ( !processFile->IsOpen() ) throw -15; |
if ( !processFile->IsOpen() ) throw -15; |
586 |
// |
// |
587 |
// Run the core program, put any output error in the "error" variable |
// Run the core program, put any output error in the "error" variable |
588 |
// |
// |
589 |
|
if ( debug ) printf("\n\n Pre-processing:\n\n"); |
590 |
|
// |
591 |
|
timer.Start(kTRUE); |
592 |
if ( RUN ) { |
if ( RUN ) { |
593 |
printf(" Calling RunInfo... "); |
if ( debug ) printf(" Retrieve, if the case, the RUN informations from the DB...\n"); |
594 |
RUNSGN = RunInfoCore(run,processFile,dbc,runargc,runargv); |
printf(" RunInfo called\n"); |
595 |
printf("done\n"); |
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| start RunInfoCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
596 |
}; |
RUNSGN = RunInfoCore(run,processFile,dbc,version,runargc,runargv); |
597 |
|
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| end RunInfoCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
598 |
|
if ( debug ) printf(" ...done\n"); |
599 |
|
}; |
600 |
|
timer.Stop(); |
601 |
|
runtime = timer.RealTime(); |
602 |
|
cruntime = timer.CpuTime(); |
603 |
// |
// |
604 |
// From the Run Infos extract acq_var_info to determine if detectors are in the acquisition or not |
// From the Run Infos extract acq_var_info to determine if detectors are in the acquisition or not |
605 |
// |
// |
606 |
printf(" Checking if requested detectors are in the acquisition\n"); |
if ( debug ) printf(" Checking if requested detectors are in the acquisition\n"); |
607 |
ItoRunInfo *runinfo = new ItoRunInfo(processFile); |
ItoRunInfo *runinfo = new ItoRunInfo(processFile); |
608 |
runinfo->Read(run); |
Int_t sgnl = runinfo->Read(run); |
609 |
printf(" => ACQ_VAR_INFO = %i \n",runinfo->ACQ_VAR_INFO); |
if ( sgnl != 0 ) throw -17; |
610 |
if ( TRK && !(runinfo->ACQ_VAR_INFO & (1 << 4)) ) throw -16; |
nevents = runinfo->GetEntries(); |
611 |
if ( TOF && !(runinfo->ACQ_VAR_INFO & (1 << 0)) ) throw -17; |
nruns = runinfo->GetNoRun(); |
612 |
if ( CAL && !(runinfo->ACQ_VAR_INFO & (1 << 3)) ) throw -18; |
if ( debug ) printf(" => ACQ_VAR_INFO = %i \n",runinfo->ACQ_VAR_INFO); |
613 |
if ( AC && !(runinfo->ACQ_VAR_INFO & (1 << 1)) && !(runinfo->ACQ_VAR_INFO & (1 << 2)) ) throw -19; |
if ( TRK && !(runinfo->ACQ_VAR_INFO & (1 << 4)) ){ |
614 |
if ( S4 && !(runinfo->ACQ_VAR_INFO & (1 << 5)) ) throw -20; |
DVSGN += 1; |
615 |
if ( ND && !(runinfo->ACQ_VAR_INFO & (1 << 9)) ) throw -21; |
if ( tedious ) throw -30; |
616 |
printf(" OK! start processing detector's data. \n"); |
if ( autom ){ |
617 |
|
TRK = 0; |
618 |
|
if ( debug ) printf(" TRK excluded from processing \n"); |
619 |
|
}; |
620 |
|
if ( zerofill && debug ) printf(" TRK is not in the acquisition! \n"); |
621 |
|
}; |
622 |
|
if ( TOF && !(runinfo->ACQ_VAR_INFO & (1 << 0)) ){ |
623 |
|
DVSGN += 2; |
624 |
|
if ( tedious ) throw -31; |
625 |
|
if ( autom ){ |
626 |
|
TOF = 0; |
627 |
|
if ( debug ) printf(" TOF excluded from processing \n"); |
628 |
|
}; |
629 |
|
if ( zerofill && debug ) printf(" TOF is not in the acquisition! \n"); |
630 |
|
}; |
631 |
|
if ( CAL && !(runinfo->ACQ_VAR_INFO & (1 << 3)) ){ |
632 |
|
DVSGN += 4; |
633 |
|
if ( tedious ) throw -32; |
634 |
|
if ( autom ){ |
635 |
|
CAL = 0; |
636 |
|
if ( debug ) printf(" CAL excluded from processing \n"); |
637 |
|
}; |
638 |
|
if ( zerofill && debug ) printf(" CAL is not in the acquisition! \n"); |
639 |
|
}; |
640 |
|
if ( AC && (!(runinfo->ACQ_VAR_INFO & (1 << 1)) || !(runinfo->ACQ_VAR_INFO & (1 << 2))) ){ |
641 |
|
DVSGN += 8; |
642 |
|
if ( tedious ) throw -33; |
643 |
|
if ( autom ){ |
644 |
|
AC = 0; |
645 |
|
if ( debug ) printf(" AC excluded from processing \n"); |
646 |
|
}; |
647 |
|
if ( zerofill && debug ) printf(" AC is not in the acquisition! \n"); |
648 |
|
}; |
649 |
|
if ( S4 && !(runinfo->ACQ_VAR_INFO & (1 << 5)) ){ |
650 |
|
DVSGN += 16; |
651 |
|
if ( tedious ) throw -34; |
652 |
|
if ( autom ){ |
653 |
|
S4 = 0; |
654 |
|
if ( debug ) printf(" S4 excluded from processing \n"); |
655 |
|
}; |
656 |
|
if ( zerofill && debug ) printf(" S4 is not in the acquisition! \n"); |
657 |
|
}; |
658 |
|
if ( ND && !(runinfo->ACQ_VAR_INFO & (1 << 9)) ){ |
659 |
|
DVSGN += 32; |
660 |
|
if ( tedious ) throw -35; |
661 |
|
if ( autom ){ |
662 |
|
ND = 0; |
663 |
|
if ( debug ) printf(" ND excluded from processing \n"); |
664 |
|
}; |
665 |
|
if ( zerofill && debug ) printf(" ND is not in the acquisition! \n"); |
666 |
|
}; |
667 |
// |
// |
668 |
|
if ( !DVSGN ){ |
669 |
|
if ( debug ) printf(" OK! Start processing detector's data. \n"); |
670 |
|
} else { |
671 |
|
if ( debug ) printf(" WARNING! missing detector(s)! Start anyway processing detector's data. \n"); |
672 |
|
}; |
673 |
|
if ( debug ) printf("\n End pre-processing \n\n"); |
674 |
|
// |
675 |
|
timer.Start(kTRUE); |
676 |
if ( TRK ) { |
if ( TRK ) { |
677 |
printf(" Calling TrackerLevel2... "); |
printf(" TrackerLevel2 called\n"); |
678 |
|
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| start TrkCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
679 |
TRKSGN = TrkCore(run,processFile,dbc,trkargc,trkargv); |
TRKSGN = TrkCore(run,processFile,dbc,trkargc,trkargv); |
680 |
printf("done\n"); |
gSystem->Unlink("TrackerFolder"); //patch |
681 |
|
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| end TrkCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
682 |
}; |
}; |
683 |
|
timer.Stop(); |
684 |
|
trktime = timer.RealTime(); |
685 |
|
ctrktime = timer.CpuTime(); |
686 |
|
// |
687 |
|
timer.Start(kTRUE); |
688 |
if ( TOF ) { |
if ( TOF ) { |
689 |
printf(" Calling ToFLevel2... "); |
printf(" ToFLevel2 called\n"); |
690 |
|
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| start ToFCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
691 |
TOFSGN = ToFCore(run,processFile,dbc,tofargc,tofargv); |
TOFSGN = ToFCore(run,processFile,dbc,tofargc,tofargv); |
692 |
printf("done\n"); |
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| end ToFCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
693 |
}; |
}; |
694 |
|
timer.Stop(); |
695 |
|
toftime = timer.RealTime(); |
696 |
|
ctoftime = timer.CpuTime(); |
697 |
|
// |
698 |
|
timer.Start(kTRUE); |
699 |
if ( CAL ) { |
if ( CAL ) { |
700 |
printf(" Calling CalorimeterLevel2... "); |
printf(" CalorimeterLevel2 called\n"); |
701 |
|
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| start CaloCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
702 |
CALSGN = CaloCore(run,processFile,dbc,calargc,calargv); |
CALSGN = CaloCore(run,processFile,dbc,calargc,calargv); |
703 |
printf("done\n"); |
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| end CaloCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
704 |
}; |
}; |
705 |
|
timer.Stop(); |
706 |
|
caltime = timer.RealTime(); |
707 |
|
ccaltime = timer.CpuTime(); |
708 |
|
// |
709 |
|
timer.Start(kTRUE); |
710 |
if ( TRG ) { |
if ( TRG ) { |
711 |
printf(" Calling TriggerLevel2... "); |
printf(" TriggerLevel2 called\n"); |
712 |
|
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| start TrigCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
713 |
TRGSGN = TrigCore(run,processFile,dbc,trgargc,trgargv); |
TRGSGN = TrigCore(run,processFile,dbc,trgargc,trgargv); |
714 |
printf("done\n"); |
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| end TrigCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
715 |
}; |
}; |
716 |
|
timer.Stop(); |
717 |
|
trgtime = timer.RealTime(); |
718 |
|
ctrgtime = timer.CpuTime(); |
719 |
|
// |
720 |
|
timer.Start(kTRUE); |
721 |
if ( AC ) { |
if ( AC ) { |
722 |
printf(" Calling AnticounterLevel2... "); |
printf(" AnticounterLevel2 called\n"); |
723 |
|
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| start AcCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
724 |
ACSGN = AcCore(run,processFile,dbc,acargc,acargv); |
ACSGN = AcCore(run,processFile,dbc,acargc,acargv); |
725 |
printf("done\n"); |
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| end AcCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
726 |
}; |
}; |
727 |
|
timer.Stop(); |
728 |
|
actime = timer.RealTime(); |
729 |
|
cactime = timer.CpuTime(); |
730 |
|
// |
731 |
|
timer.Start(kTRUE); |
732 |
if ( S4 ) { |
if ( S4 ) { |
733 |
printf(" Calling S4Level2 ... "); |
printf(" S4Level2 called\n"); |
734 |
|
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| start S4Core STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
735 |
S4SGN = S4Core(run,processFile,dbc,s4argc,s4argv); |
S4SGN = S4Core(run,processFile,dbc,s4argc,s4argv); |
736 |
printf("done\n"); |
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| end S4Core STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
737 |
}; |
}; |
738 |
|
timer.Stop(); |
739 |
|
s4time = timer.RealTime(); |
740 |
|
cs4time = timer.CpuTime(); |
741 |
|
// |
742 |
|
timer.Start(kTRUE); |
743 |
if ( ND ) { |
if ( ND ) { |
744 |
printf(" Calling NDLevel2... "); |
printf(" NDLevel2 called\n"); |
745 |
|
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| start NDCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
746 |
NDSGN = NDCore(run,processFile,dbc,ndargc,ndargv); |
NDSGN = NDCore(run,processFile,dbc,ndargc,ndargv); |
747 |
printf("done\n"); |
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| end NDCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
748 |
}; |
}; |
749 |
|
timer.Stop(); |
750 |
|
ndtime = timer.RealTime(); |
751 |
|
cndtime = timer.CpuTime(); |
752 |
|
// |
753 |
|
timer.Start(kTRUE); |
754 |
if ( ORB ) { |
if ( ORB ) { |
755 |
printf(" Calling OrbitalInfo... "); |
printf(" OrbitalInfo called\n"); |
756 |
|
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| start OrbitalInfoCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
757 |
ORBSGN = OrbitalInfoCore(run,processFile,dbc,orbargc,orbargv); |
ORBSGN = OrbitalInfoCore(run,processFile,dbc,orbargc,orbargv); |
758 |
printf("done\n"); |
if ( debug ) printf(" >>>>>>>>>>>>>>>>>>>| end OrbitalInfoCore STDOUT |<<<<<<<<<<<<<<<<<<<\n"); |
759 |
}; |
}; |
760 |
|
timer.Stop(); |
761 |
|
orbtime = timer.RealTime(); |
762 |
|
corbtime = timer.CpuTime(); |
763 |
// |
// |
764 |
} catch(Int_t signal) { |
} catch(Int_t signal) { |
765 |
error = signal; |
error = signal; |
774 |
case -8: message += " No Header branch in LEVEL0 Physics tree"; break; |
case -8: message += " No Header branch in LEVEL0 Physics tree"; break; |
775 |
case -9: message += " No Registry branch in LEVEL0 Physics tree"; break; |
case -9: message += " No Registry branch in LEVEL0 Physics tree"; break; |
776 |
case -11: message += " LEVEL0 Physics tree is empty"; break; |
case -11: message += " LEVEL0 Physics tree is empty"; break; |
777 |
case -12: message += " Too few entries in the registry tree"; break; |
case -12: message += " Too few entries in the tree"; break; |
778 |
case -13: message += " Cannot create processFolder directory"; break; |
case -13: message += " Cannot create processFolder directory"; break; |
779 |
case -14: message += " Error querying the DB"; break; |
case -14: message += " Error querying the DB"; break; |
780 |
case -15: message += " Cannot open file for writing"; break; |
case -15: message += " Cannot open file for writing"; break; |
781 |
case -16: message += " No tracker in the acquisition (use -TRK to process anyway)"; break; |
case -17: message += " Error during pre-processing"; break; |
|
case -17: message += " No ToF in the acquisition (use -TOF to process anyway)"; break; |
|
|
case -18: message += " No calorimeter in the acquisition (use -CAL to process anyway)"; break; |
|
|
case -19: message += " No anticounters in the acquisition (use -AC to process anyway)"; break; |
|
|
case -20: message += " No S4 in the acquisition (use -S4 to process anyway)"; break; |
|
|
case -21: message += " No neutron detector in the acquisition (use -ND to process anyway)"; break; |
|
782 |
case -22: message += " Unknown input or wrong syntax in input paramters!"; break; |
case -22: message += " Unknown input or wrong syntax in input paramters!"; break; |
783 |
|
case -30: message += " No TRK in the acquisition"; break; |
784 |
|
case -31: message += " No TOF in the acquisition"; break; |
785 |
|
case -32: message += " No CAL in the acquisition"; break; |
786 |
|
case -33: message += " No AC in the acquisition"; break; |
787 |
|
case -34: message += " No S4 in the acquisition"; break; |
788 |
|
case -35: message += " No ND in the acquisition"; break; |
789 |
// |
// |
790 |
case -50: message += " GLTABLES - No entries matching GL_RUN query"; break; |
case -50: message += " GLTABLES - No entries matching GL_RUN query"; break; |
791 |
case -51: message += " GLTABLES - No entries matching GL_ROOT query"; break; |
case -51: message += " GLTABLES - No entries matching GL_ROOT query"; break; |
808 |
case -111: message += " CALORIMETERLEVEL2 - Corrupted calibration"; break; |
case -111: message += " CALORIMETERLEVEL2 - Corrupted calibration"; break; |
809 |
case -112: message += " CALORIMETERLEVEL2 - No physics event related to registry entry in Level0 file"; break; |
case -112: message += " CALORIMETERLEVEL2 - No physics event related to registry entry in Level0 file"; break; |
810 |
case -113: message += " CALORIMETERLEVEL2 - No tracker event related to registry entry in Level2 file"; break; |
case -113: message += " CALORIMETERLEVEL2 - No tracker event related to registry entry in Level2 file"; break; |
811 |
|
case -114: message += " CALORIMETERLEVEL2 - Help called"; break; |
812 |
|
case -115: message += " CALORIMETERLEVEL2 - No Calorimeter bad strip offline mask file"; break; |
813 |
|
case -116: message += " CALORIMETERLEVEL2 - DB connection problems"; break; |
814 |
|
case -117: message += " CALORIMETERLEVEL2 - Cannot reprocess file with Level1 data without calling Level1 routine"; break; |
815 |
|
case -118: message += " CALORIMETERLEVEL2 - Cannot reprocess file without Level1 data calling Level1 routine"; break; |
816 |
// |
// |
817 |
case -200: message += " TRACKERLEVEL2 - LEVEL1 framework unknown (HBOOK/ROOT)"; break; |
case -200: message += " TRACKERLEVEL2 - LEVEL1 framework unknown (HBOOK/ROOT)"; break; |
818 |
case -201: message += " TRACKERLEVEL2 - LEVEL2 framework unknown (HBOOK/ROOT)"; break; |
case -201: message += " TRACKERLEVEL2 - LEVEL2 framework unknown (HBOOK/ROOT)"; break; |
835 |
case -302: message += " TOFLEVEL2 - No tracker tree in Level2 file"; break; |
case -302: message += " TOFLEVEL2 - No tracker tree in Level2 file"; break; |
836 |
case -303: message += " TOFLEVEL2 - No Tof branch in Level0 file"; break; |
case -303: message += " TOFLEVEL2 - No Tof branch in Level0 file"; break; |
837 |
case -313: message += " TOFLEVEL2 - No more tracker events in Level2 file"; break; |
case -313: message += " TOFLEVEL2 - No more tracker events in Level2 file"; break; |
838 |
|
case -314: message += " TOFLEVEL2 - DB connection problems"; break; |
839 |
// |
// |
840 |
case -401: message += " TRIGGERLEVEL2 - Cannot open file for writing"; break; |
case -401: message += " TRIGGERLEVEL2 - Cannot open file for writing"; break; |
841 |
case -402: message += " TRIGGERLEVEL2 - No Trigger branch in Level0 tree"; break; |
case -402: message += " TRIGGERLEVEL2 - No Trigger branch in Level0 tree"; break; |
842 |
|
case -403: message += " TRIGGERLEVEL2 - DB connection problems"; break; |
843 |
// |
// |
844 |
case -500: message += " S4LEVEL2 - No level2 file"; break; |
case -500: message += " S4LEVEL2 - No level2 file"; break; |
845 |
case -501: message += " S4LEVEL2 - Cannot open file for writing"; break; |
case -501: message += " S4LEVEL2 - Cannot open file for writing"; break; |
846 |
case -502: message += " S4LEVEL2 - No result from GL_S4_CALIB"; break; |
case -502: message += " S4LEVEL2 - No result from GL_S4_CALIB"; break; |
847 |
case -503: message += " S4LEVEL2 - No S4 branch in Level0 tree"; break; |
case -503: message += " S4LEVEL2 - No S4 branch in Level0 tree"; break; |
848 |
|
case -504: message += " S4LEVEL2 - DB connection problems"; break; |
849 |
// |
// |
850 |
case -600: message += " NDLEVEL2 - No level2 file"; break; |
case -600: message += " NDLEVEL2 - No level2 file"; break; |
851 |
case -601: message += " NDLEVEL2 - Cannot open file for writing"; break; |
case -601: message += " NDLEVEL2 - Cannot open file for writing"; break; |
852 |
case -603: message += " NDLEVEL2 - No S4Level2 branch in Level0 tree"; break; |
case -603: message += " NDLEVEL2 - No S4Level2 branch in Level0 tree"; break; |
853 |
|
case -604: message += " NDLEVEL2 - DB connection problems"; break; |
854 |
// |
// |
855 |
case -701: message += " NDLEVEL2 - Cannot open file for writing"; break; |
case -701: message += " ACLEVEL2 - Cannot open file for writing"; break; |
856 |
case -704: message += " NDLEVEL2 - No Anticounter branch in Level0 tree"; break; |
case -704: message += " ACLEVEL2 - No Anticounter branch in Level0 tree"; break; |
857 |
|
case -705: message += " ACLEVEL2 - DB connection problems"; break; |
858 |
// |
// |
859 |
case -800: message += " RUNINFO - No such run in the RunInfo list"; break; |
case -800: message += " RUNINFO - No such run in the RunInfo list"; break; |
860 |
case -801: message += " RUNINFO - No RunInfo tree in Level2 file"; break; |
case -801: message += " RUNINFO - No RunInfo tree in Level2 file"; break; |
863 |
case -804: message += " RUNINFO - Unknown detector"; break; |
case -804: message += " RUNINFO - Unknown detector"; break; |
864 |
case -805: message += " RUNINFO - Reprocessing data but no RunInfo tree in Level2 file"; break; |
case -805: message += " RUNINFO - Reprocessing data but no RunInfo tree in Level2 file"; break; |
865 |
case -806: message += " RUNINFO - Can not handle more than 500 runs"; break; |
case -806: message += " RUNINFO - Can not handle more than 500 runs"; break; |
866 |
// |
case -807: message += " RUNINFO - DB connection problems"; break; |
867 |
|
// |
868 |
default: message += "Unidentified error or warning"; break; |
default: message += "Unidentified error or warning"; break; |
869 |
}; |
}; |
870 |
printf("\n"); |
printf("\n"); |
871 |
if ( signal < 0 ) cout << " ERROR ("<< signal << ") "<< message <<endl; |
if ( signal < 0 ) cout << " ERROR ("<< signal << ") "<< message <<endl; |
872 |
} |
} |
873 |
// switch(RUNSGN){ |
// |
874 |
// }; |
// Warnings from XCore routines and from DV: |
875 |
|
// |
876 |
|
if ( debug && DVSGN ) printf(" DVSGN = %i \n",DVSGN); |
877 |
|
if ( DVSGN ) printf("\n WARNING DarthVader: \n"); |
878 |
|
if ( DVSGN & (1 << 0) ) printf(" - No tracker in the acquisition\n"); |
879 |
|
if ( DVSGN & (1 << 1) ) printf(" - No ToF in the acquisition\n"); |
880 |
|
if ( DVSGN & (1 << 2) ) printf(" - No calorimeter in the acquisition\n"); |
881 |
|
if ( DVSGN & (1 << 3) ) printf(" - No anticounters in the acquisition\n"); |
882 |
|
if ( DVSGN & (1 << 4) ) printf(" - No S4 in the acquisition\n"); |
883 |
|
if ( DVSGN & (1 << 5) ) printf(" - No neutron detector in the acquisition\n"); |
884 |
|
// |
885 |
|
// CaloCore: |
886 |
|
// |
887 |
switch(CALSGN){ |
switch(CALSGN){ |
888 |
case 100: printf("\n WARNING CALORIMETER - Data with no associated calibration\n"); break; |
case 100: printf("\n WARNING CALORIMETER - Data with no associated calibration\n"); |
889 |
case 101: printf("\n WARNING CALORIMETER - No tracks or good events in this run\n"); break; |
case 101: printf("\n WARNING CALORIMETER - No tracks or good events in this run\n"); |
890 |
}; |
}; |
891 |
// |
// |
892 |
|
// no other at the moment |
893 |
|
// |
894 |
|
// |
895 |
// Close the DB connection |
// Close the DB connection |
896 |
// |
// |
897 |
if ( dbc ){ |
if ( dbc ){ |
904 |
processFile->Close(); |
processFile->Close(); |
905 |
}; |
}; |
906 |
// |
// |
907 |
|
// print benchmark results (if the case) |
908 |
|
// |
909 |
|
dvtimer.Stop(); |
910 |
|
dvtime = dvtimer.RealTime(); |
911 |
|
cdvtime = dvtimer.CpuTime(); |
912 |
|
if ( bench ){ |
913 |
|
Float_t runrt = 0.; |
914 |
|
Float_t trkrt = 0.; |
915 |
|
Float_t calrt = 0.; |
916 |
|
Float_t tofrt = 0.; |
917 |
|
Float_t trgrt = 0.; |
918 |
|
Float_t acrt = 0.; |
919 |
|
Float_t s4rt = 0.; |
920 |
|
Float_t ndrt = 0.; |
921 |
|
Float_t orbrt = 0.; |
922 |
|
Float_t dvrt = nevents/dvtime; |
923 |
|
if ( RUN ) runrt = nruns/runtime; |
924 |
|
if ( TRK ) trkrt = nevents/trktime; |
925 |
|
if ( CAL ) calrt = nevents/caltime; |
926 |
|
if ( TOF ) tofrt = nevents/toftime; |
927 |
|
if ( TRG ) trgrt = nevents/trgtime; |
928 |
|
if ( AC ) acrt = nevents/actime; |
929 |
|
if ( S4 ) s4rt = nevents/s4time; |
930 |
|
if ( ND ) ndrt = nevents/ndtime; |
931 |
|
if ( ORB ) orbrt = nevents/orbtime; |
932 |
|
// |
933 |
|
printf("\n\n################################################################################\n"); |
934 |
|
printf("# Benchmark results: nevents = %10u runs = %3u #\n",nevents,nruns); |
935 |
|
printf("################################################################################\n"); |
936 |
|
printf("# Detector # Core routine called # Real Time # CPU time # Events/s #\n"); |
937 |
|
printf("################################################################################\n"); |
938 |
|
printf("# RUN # %i # %8.2f # %8.2f # %8.2f #\n",RUN,fabs(runtime),fabs(cruntime),runrt); |
939 |
|
printf("# TRK # %i # %8.2f # %8.2f # %8.2f #\n",TRK,fabs(trktime),fabs(ctrktime),trkrt); |
940 |
|
printf("# CAL # %i # %8.2f # %8.2f # %8.2f #\n",CAL,fabs(caltime),fabs(ccaltime),calrt); |
941 |
|
printf("# TOF # %i # %8.2f # %8.2f # %8.2f #\n",TOF,fabs(toftime),fabs(ctoftime),tofrt); |
942 |
|
printf("# TRG # %i # %8.2f # %8.2f # %8.2f #\n",TRG,fabs(trgtime),fabs(ctrgtime),trgrt); |
943 |
|
printf("# AC # %i # %8.2f # %8.2f # %8.2f #\n",AC,fabs(actime),fabs(cactime),acrt); |
944 |
|
printf("# S4 # %i # %8.2f # %8.2f # %8.2f #\n",S4,fabs(s4time),fabs(cs4time),s4rt); |
945 |
|
printf("# ND # %i # %8.2f # %8.2f # %8.2f #\n",ND,fabs(ndtime),fabs(cndtime),ndrt); |
946 |
|
printf("# ORB # %i # %8.2f # %8.2f # %8.2f #\n",ORB,fabs(orbtime),fabs(corbtime),orbrt); |
947 |
|
printf("################################################################################\n"); |
948 |
|
printf("# Total # # %8.2f # %8.2f # %8.2f #\n",fabs(dvtime),fabs(cdvtime),dvrt); |
949 |
|
printf("################################################################################\n"); |
950 |
|
}; |
951 |
|
// |
952 |
|
// |
953 |
if ( error != 0 ) printf("\n\n WARNING: exiting with signal %i \n\n",error); |
if ( error != 0 ) printf("\n\n WARNING: exiting with signal %i \n\n",error); |
954 |
printf("\n"); |
// |
955 |
printf("Finished, exiting...\n"); |
// |
956 |
printf("\n"); |
// |
957 |
|
if ( remfile && error < 0 ){ |
958 |
|
printf(" -c or --clean option used, deleting file %s \n\n",filename.Data()); |
959 |
|
gSystem->Unlink(filename.Data()); |
960 |
|
}; |
961 |
|
// |
962 |
|
printf("\n Finished, exiting...\n\n"); |
963 |
// |
// |
964 |
// Close redirection if the case. |
// Close redirection if the case. |
965 |
// |
// |