41 |
printf("\n DarthVader [ options ] -idRun ID_RUN [+-all] [+-detector [ detector options ] ] \n"); |
printf("\n DarthVader [ options ] -idRun ID_RUN [+-all] [+-detector [ detector options ] ] \n"); |
42 |
printf("\n Options are: \n\n"); |
printf("\n Options are: \n\n"); |
43 |
printf(" --version print informations about compilation and exit\n"); |
printf(" --version print informations about compilation and exit\n"); |
44 |
printf(" -h | --help print this help and exit \n"); |
printf(" -h || --help print this help and exit \n"); |
45 |
printf(" -v | --verbose be verbose [default]\n"); |
printf(" -v || --verbose be verbose [default]\n"); |
46 |
printf(" -s | --silent print nothing on STDOUT\n"); |
printf(" -s || --silent print nothing on STDOUT\n"); |
47 |
printf(" -c | --clean remove file if exiting with errors\n"); |
printf(" -c || --clean remove file if exiting with errors\n"); |
48 |
printf(" -b | --benchmark perform and print a benchmark test\n"); |
printf(" -b || --benchmark perform and print a benchmark test\n"); |
49 |
printf(" -auto | -AUTO exclude from processing detector which are NOT in the acquisition [default]\n"); |
printf(" -auto || -AUTO exclude from processing detector which are NOT in the acquisition [default]\n"); |
50 |
printf(" -zerofill if a detector is not in the acquisition the routine is called anyway \n"); |
printf(" -zerofill if a detector is not in the acquisition the routine is called anyway \n"); |
51 |
printf(" but all detector's data will be marked as bad\n"); |
printf(" but all detector's data will be marked as bad\n"); |
52 |
printf(" -tedious exit with error if a detector is not in the acquisition and \n"); |
printf(" -tedious exit with error if a detector is not in the acquisition and \n"); |
56 |
printf(" -psw password for the DB connection [default = $PAM_DBPSW or \"\"]\n"); |
printf(" -psw password for the DB connection [default = $PAM_DBPSW or \"\"]\n"); |
57 |
printf(" -idRun ID_RUN ID number (from the DB) of the run to be processed \n"); |
printf(" -idRun ID_RUN ID number (from the DB) of the run to be processed \n"); |
58 |
printf(" -processFile file output filename [default ID_RUN.Level2.root]\n"); |
printf(" -processFile file output filename [default ID_RUN.Level2.root]\n"); |
59 |
printf(" +all | +ALL call all detectors software [default]\n"); |
printf(" +all || +ALL call all detectors software [default]\n"); |
60 |
printf(" -all | -ALL call nothing\n"); |
printf(" -all || -ALL call nothing\n"); |
61 |
printf(" +detector process detector; detector can be: TOF,TRK,CAL,TRG,ORB,S4,ND,AC,RUN\n"); |
printf(" +detector process detector; detector can be: TOF,TRK,CAL,TRG,ORB,S4,ND,AC,RUN\n"); |
62 |
printf(" -detector do not process detector (as above)\n"); |
printf(" -detector do not process detector (as above)\n"); |
63 |
printf(" detector options must be included in square parenthesis with spaces, for example:\n"); |
printf(" detector options must be included in square parenthesis with spaces, for example:\n"); |
840 |
case -52: message += " GLTABLES - No entries matching GL_PARAM query"; break; |
case -52: message += " GLTABLES - No entries matching GL_PARAM query"; break; |
841 |
case -53: message += " GLTABLES - No entries matching GL_TRK_CALIB query"; break; |
case -53: message += " GLTABLES - No entries matching GL_TRK_CALIB query"; break; |
842 |
case -54: message += " GLTABLES - No entries matching GL_CALO_CALIB query"; break; |
case -54: message += " GLTABLES - No entries matching GL_CALO_CALIB query"; break; |
843 |
case -55: message += " GLTABLES - No entries matching GL_CALO_CALIB query"; break; |
case -55: message += " GLTABLES - No entries matching GL_S4_CALIB query"; break; |
844 |
case -56: message += " GLTABLES - No entries matching GL_TLE query"; break; |
case -56: message += " GLTABLES - No entries matching GL_TLE query"; break; |
845 |
case -57: message += " GLTABLES - DB connection gone and not able to reconnect"; break; |
case -57: message += " GLTABLES - DB connection gone and not able to reconnect"; break; |
846 |
// |
// |
939 |
case 101: printf("\n WARNING CALORIMETER - No tracks or good events in this run\n"); |
case 101: printf("\n WARNING CALORIMETER - No tracks or good events in this run\n"); |
940 |
}; |
}; |
941 |
// |
// |
942 |
|
// OrbitalInfoCore: |
943 |
|
// |
944 |
|
switch(ORBSGN){ |
945 |
|
case 900: printf("\n WARNING ORBITALINFO - No inclination MCMDs\n"); |
946 |
|
}; |
947 |
|
// |
948 |
// no other at the moment |
// no other at the moment |
949 |
// |
// |
950 |
// |
// |
976 |
Float_t s4rt = 0.; |
Float_t s4rt = 0.; |
977 |
Float_t ndrt = 0.; |
Float_t ndrt = 0.; |
978 |
Float_t orbrt = 0.; |
Float_t orbrt = 0.; |
979 |
Float_t dvrt = nevents/dvtime; |
Float_t dvrt = (nevents+1)/dvtime; |
980 |
if ( RUN ) runrt = nruns/runtime; |
if ( RUN ) runrt = nruns/runtime; |
981 |
if ( TRK ) trkrt = nevents/trktime; |
if ( TRK ) trkrt = (nevents+1)/trktime; |
982 |
if ( CAL ) calrt = nevents/caltime; |
if ( CAL ) calrt = (nevents+1)/caltime; |
983 |
if ( TOF ) tofrt = nevents/toftime; |
if ( TOF ) tofrt = (nevents+1)/toftime; |
984 |
if ( TRG ) trgrt = nevents/trgtime; |
if ( TRG ) trgrt = (nevents+1)/trgtime; |
985 |
if ( AC ) acrt = nevents/actime; |
if ( AC ) acrt = (nevents+1)/actime; |
986 |
if ( S4 ) s4rt = nevents/s4time; |
if ( S4 ) s4rt = (nevents+1)/s4time; |
987 |
if ( ND ) ndrt = nevents/ndtime; |
if ( ND ) ndrt = (nevents+1)/ndtime; |
988 |
if ( ORB ) orbrt = nevents/orbtime; |
if ( ORB ) orbrt = (nevents+1)/orbtime; |
989 |
// |
// |
990 |
printf("\n\n###########################################################################################\n"); |
printf("\n\n###########################################################################################\n"); |
991 |
printf("# Benchmark results: nevents = %10u runs = %3u #\n",nevents,nruns); |
printf("# Benchmark results: nevents = %10u runs = %3u #\n",(nevents+1),nruns); |
992 |
printf("###########################################################################################\n"); |
printf("###########################################################################################\n"); |
993 |
printf("# Detector # Core routine called # Queries # Real Time # CPU time # Events/s #\n"); |
printf("# Detector # Core routine called # Queries # Real Time # CPU time # Events/s #\n"); |
994 |
printf("###########################################################################################\n"); |
printf("###########################################################################################\n"); |