12 #include "TObjString.h"
22 #define MYSQLPP_SSQLS_NO_STATICS
48 fPrecessionReversal(kFALSE),fNominalWienAngle(30.0)
75 "disable EPICS database access");
104 std::string varname, varvalue;
105 while (mapstr.ReadNextLine()) {
109 mapstr.TrimWhitespace();
110 if (mapstr.LineIsEmpty())
continue;
112 if (mapstr.HasVariablePair(
"=",varname,varvalue)){
113 QwDebug <<
"QwEPICSEvent::LoadChannelMap: keyword,value pair:"
115 if (varname ==
"NominalWienAngle"){
117 }
else if (varname ==
"BlinderReversalForRunTwo"){
122 }
else if (varname ==
"PrecessionReversal"){
128 QwError <<
"QwEPICSEvent::LoadChannelMap: "
129 <<
"Unknown keyword,variable pair: "
136 varname = mapstr.GetTypedNextToken<std::string>();
137 std::string dbtable = mapstr.GetTypedNextToken<std::string>();
138 TString datatype = mapstr.GetTypedNextToken<TString>();
141 if (datatype ==
"") {
147 if (datatype ==
"int") datatypeid =
kEPICSInt;
152 if (
kDebug == 1) std::cout <<
"line read in the parameter file =" << lineread << std::endl;
171 values.push_back(0.0);
175 name.ReplaceAll(
':',
'_');
176 TString name_type = name +
"/D";
179 tree->Branch(name, &(values[treeindex]), name_type);
207 values[treeindex] =
static_cast<Double_t
>(
fEPICSDataEvent[tagindex].StringValue.Hash());
237 if (
kDebug == 1) std::cout <<
"Here we are in 'CalculateRunningValues'!!"<<std::endl;
240 Bool_t anyFilled = kFALSE;
241 for (
size_t tagindex = 0; tagindex <
fEPICSDataEvent.size(); tagindex++) {
244 if (! anyFilled)
return;
279 <<
" giving a running average of "
285 <<
" seems to be not filled."<<std::endl;
319 if (
kDebug == 1) std::cout <<
"Here we are, entering 'ExtractEPICSValues'!!"<<std::endl;
331 string varname, varvalue;
354 return match->second;
480 tmpvalue = Double_t(atof(value.c_str()));
487 tmpvalue = Double_t(atol(value.c_str()));
499 Double_t average_of_squares = 0.0;
500 Double_t variance = 0.0;
501 Double_t sigma = 0.0;
503 std::cout <<
"##### EPICS Event Summary from PrintAverages() #####\n"
504 <<
"Total number of EPICS events in this run == "
506 << std::setw(20) << std::setiosflags(std::ios::left) <<
"Name"
508 <<
"Minimum Maximum"<<std::endl;
509 std::cout <<
"*****Non-string EPICS Variables*****" << std::endl;
522 variance = average_of_squares - (mean * mean);
524 sigma = sqrt(-1.0 * variance);
526 sigma = sqrt(variance);
529 std::cout << std::setw(20) << std::setiosflags(std::ios::left)
531 << std::setprecision(5) << std::setw(10)
532 <<mean<<
" " << std::setw(10)<<sigma<<
" " << std::setw(10)
536 std::cout << std::setw(20) << std::setiosflags(std::ios::left)
538 << std::setprecision(5) << std::setw(10)
545 std::cout <<
"*****String EPICS Variables are below, if any*****" << std::endl;
549 std::cout << std::setw(20) << std::setiosflags(std::ios::left)
551 <<tagindex<<
"\tand status is\t\t"
555 std::cout <<
"\t*****\tThis variable changed during the run. Only "
558 <<
"% of the events has this value.";
560 std::cout <<std::endl;
562 std::cout << std::setw(20) << std::setiosflags(std::ios::left)
564 <<
"No data..."<<std::endl;
575 QwMessage <<
"fEPICSVariableList[" << tagindex <<
"] == "
583 std::vector<Double_t> autogain_values;
584 std::vector<std::string>::iterator ptr_tag;
586 autogain_values.clear();
590 ptr_tag = tag_list.begin();
591 while (ptr_tag < tag_list.end()) {
596 return autogain_values;
604 Double_t average_of_squares = 0.0;
605 Double_t variance = 0.0;
606 Double_t sigma = 0.0;
609 std::ofstream output;
610 TString theEPICSDataFile;
611 theEPICSDataFile = getenv(
"QW_TMP");
612 theEPICSDataFile +=
"/QwEPICSData.txt";
613 output.open(theEPICSDataFile,std::ofstream::out);
615 if (output.is_open()) {
618 output <<
"##### EPICS Event Summary #####\n"
619 <<
"Total number of EPICS events in this run == "
621 << std::setw(20) << std::setiosflags(std::ios::left) <<
"Name"
623 <<
"Minimum Maximum"<<std::endl;
635 variance = average_of_squares - (mean * mean);
637 sigma = sqrt(-1.0 * variance);
639 sigma = sqrt(variance);
642 output << std::setw(20) << std::setiosflags(std::ios::left)
644 << std::setprecision(5) << std::setw(10)
645 <<mean<<
" " << std::setw(10)<<sigma<<
" " << std::setw(10)
649 output << std::setw(20) << std::setiosflags(std::ios::left)
651 << std::setprecision(5) << std::setw(10)
661 output << std::setw(20) << std::setiosflags(std::ios::left)
665 output << std::setw(20) << std::setiosflags(std::ios::left)
667 <<
"No data..."<<std::endl;
684 std::cerr <<
"The EPICS variable label and type arrays are not the same size!\n"
685 <<
"EPICS readback may be corrupted!"<<std::endl;
717 mysqlpp::Query query= db->
Query();
718 query <<
"SELECT slow_controls_settings_id FROM slow_controls_settings WHERE";
719 query <<
" runlet_id = " << mysqlpp::quote << db->
GetRunletID();
721 mysqlpp::StoreQueryResult res = query.store();
723 if (res.num_rows() != 0) {
724 QwError <<
"This runlet already has slow controls entries in the database!" <<
QwLog::endl;
725 QwError <<
"The following slow_controls_settings_id values already exist in the database: ";
726 for (
size_t i=0; i<res.num_rows(); i++) {
730 QwError <<
"Slow controls values from this replay will NOT be stored in the database." <<
QwLog::endl;
737 catch (
const mysqlpp::Exception& er) {
739 QwError <<
"Unable to determine if there are other slow controls entries in the database for this run. THERE MAY BE DUPLICATES." <<
QwLog::endl;
756 QwDebug <<
" -------------------------------------------------------------------------- " <<
QwLog::endl;
758 QwDebug <<
" -------------------------------------------------------------------------- " <<
QwLog::endl;
760 Double_t mean, average_of_squares, variance, sigma;
764 average_of_squares = 0.0;
773 std::vector<QwParitySSQLS::slow_controls_data> entrylist;
775 UInt_t sc_detector_id;
777 string table =
"slow_controls_data";
785 QwParitySSQLS::slow_controls_data tmp_row(0);
790 tmp_row.runlet_id = runlet_id;
791 tmp_row.sc_detector_id = sc_detector_id;
793 if (!sc_detector_id)
continue;
805 variance = average_of_squares - (mean * mean);
807 sigma = sqrt(-1.0 * variance);
809 sigma = sqrt(variance);
814 tmp_row.n = n_records;
815 tmp_row.value = mean;
816 tmp_row.error = sigma;
820 entrylist.push_back(tmp_row);
829 if( entrylist.size() ) {
830 QwDebug <<
"QwEPICSEvent::FillSlowControlsData::Writing to database now" <<
QwLog::endl;
831 mysqlpp::Query query= db->
Query();
841 query.insert(entrylist.begin(), entrylist.end());
845 }
catch (
const mysqlpp::Exception &er) {
851 QwDebug <<
"QwEPICSEvent::FillSlowControlsData :: This is the case when the entrylist contains nothing " <<
QwLog::endl;
859 std::vector<QwParitySSQLS::slow_controls_strings> entrylist;
860 UInt_t sc_detector_id;
862 string table =
"polarized_source";
870 QwParitySSQLS::slow_controls_strings tmp_row(0);
875 tmp_row.runlet_id = runlet_id;
876 tmp_row.sc_detector_id = sc_detector_id;
878 if (!sc_detector_id)
continue;
884 QwWarning<<
"fEPICSDataEvent[tagindex].StringValue.Data() is not defined, tmp_row.value is set to an empty string."<<
QwLog::endl;
892 entrylist.push_back(tmp_row);
900 if( entrylist.size() ) {
901 QwDebug <<
"QwEPICSEvent::FillSlowControlsStrigs Writing to database now" <<
QwLog::endl;
902 mysqlpp::Query query= db->
Query();
912 query.insert(entrylist.begin(), entrylist.end());
915 QwDebug <<
"Done executing MySQL query for FillSlowControlsStrings"
917 }
catch (
const mysqlpp::Exception &er) {
923 QwDebug <<
"QwEPICSEvent::FillSlowControlsData :: This is the case when the entrylist contains nothing " <<
QwLog::endl;
931 QwParitySSQLS::slow_controls_settings tmp_row(0);
932 std::vector<QwParitySSQLS::slow_controls_settings> entrylist;
934 tmp_row.slow_helicity_plate = mysqlpp::null;
935 tmp_row.wien_reversal = mysqlpp::null;
936 tmp_row.helicity_length = mysqlpp::null;
937 tmp_row.charge_feedback = mysqlpp::null;
938 tmp_row.position_feedback = mysqlpp::null;
939 tmp_row.qtor_current = mysqlpp::null;
940 tmp_row.target_position = mysqlpp::null;
943 tmp_row.runlet_id = runlet_id;
951 tagindex =
FindIndex(
"qw:qt_mps_i_dcct");
956 tmp_row.qtor_current = mysqlpp::null;
961 <<
" had no events during this run. "
962 <<
"Send NULL word to the database."
964 tmp_row.qtor_current = mysqlpp::null;
968 QwDebug <<
"Send the value of "
972 <<
", to the database."
974 tmp_row.qtor_current = qtorcurrent;
986 tmp_row.target_position = mysqlpp::null;
992 <<
" changed during this run. "
993 <<
"Send NULL word to the database."
995 tmp_row.target_position = mysqlpp::null;
1000 <<
" is not defined."
1001 <<
"Send NULL word to the database."
1003 tmp_row.target_position =mysqlpp::null;
1007 QwDebug <<
"Send the value of "
1011 <<
", to the database."
1013 tmp_row.target_position =
fEPICSDataEvent[tagindex].StringValue.Data();
1020 tagindex =
FindIndex(
"IGL1I00DI24_24M");
1026 tmp_row.slow_helicity_plate = mysqlpp::null;
1032 <<
" changed during the run."
1033 <<
"Send NULL word to the database."
1035 tmp_row.slow_helicity_plate = mysqlpp::null;
1040 <<
" is not defined."
1041 <<
"Send NULL word to the database."
1043 tmp_row.slow_helicity_plate =mysqlpp::null;
1048 QwDebug <<
"Send the value of "
1052 <<
", to the database."
1054 tmp_row.slow_helicity_plate =
fEPICSDataEvent[tagindex].StringValue.Data();
1066 tmp_row.passive_helicity_plate = mysqlpp::null;
1072 <<
" changed during the run."
1073 <<
"Send NULL word to the database."
1075 tmp_row.passive_helicity_plate = mysqlpp::null;
1079 if (fabs(ihwp2_readback-13056)<1){
1081 QwDebug <<
"Send the value of "
1085 <<
", to the database."
1087 tmp_row.passive_helicity_plate =
"in";
1088 }
else if (fabs(ihwp2_readback-8960)<1){
1090 QwDebug <<
"Send the value of "
1094 <<
", to the database."
1096 tmp_row.passive_helicity_plate =
"out";
1100 <<
" is not defined."
1101 <<
"Send NULL word to the database."
1103 tmp_row.passive_helicity_plate =mysqlpp::null;
1115 tmp_row.wien_reversal = mysqlpp::null;
1121 <<
" changed during the run."
1122 <<
"Send NULL word to the database."
1124 tmp_row.wien_reversal = mysqlpp::null;
1129 <<
" is not defined."
1130 <<
"Send NULL word to the database."
1132 tmp_row.wien_reversal =mysqlpp::null;
1135 TString wien_enum[5] = {
"indeterminate",
1137 "transverse_vertical",
1138 "transverse_horizontal"};
1139 QwDebug <<
"Send the value of "
1143 <<
", to the database."
1153 tmp_row.precession_reversal =
"reverse";
1155 tmp_row.precession_reversal =
"normal";
1160 tagindex =
FindIndex(
"qw:ChargeFeedback");
1166 tmp_row.charge_feedback = mysqlpp::null;
1173 <<
" changed during the run."
1174 <<
"Send NULL word to the database."
1176 tmp_row.charge_feedback = mysqlpp::null;
1182 <<
" is not defined."
1183 <<
"Send NULL word to the database."
1185 tmp_row.charge_feedback =mysqlpp::null;
1192 QwDebug <<
"Send the value of "
1196 <<
", to the database."
1200 tmp_row.charge_feedback = tmpval.Data();
1208 entrylist.push_back(tmp_row);
1212 if( entrylist.size() ) {
1213 QwDebug <<
"QwEPICSEvent::FillSlowControlsSettings Writing to database now" <<
QwLog::endl;
1214 mysqlpp::Query query= db->
Query();
1220 query.insert(entrylist.begin(), entrylist.end());
1224 }
catch (
const mysqlpp::Exception &er) {
1231 QwDebug <<
"QwEPICSEvent::FillSlowControlsSettings :: This is the case when the entrylist contains nothing " <<
QwLog::endl;
1239 Bool_t local_debug =
false;
1241 TList *string_list =
new TList;
1242 string_list->SetOwner(
true);
1244 std::size_t tagindex = 0;
1251 epics_string +=
"---";
1257 epics_string +=
"empty";
1260 std::cout <<
"QwEPICSEvent::GetEPICSStringValues() "
1264 string_list -> Add(
new TObjString(epics_string));
1275 Bool_t local_debug =
false;
1277 TSeqCollection *file_list = gROOT->GetListOfFiles();
1281 Int_t size = file_list->GetSize();
1282 for (Int_t i=0; i<size; i++)
1284 TFile *file = (TFile*) file_list->At(i);
1287 std::cout <<
"QwEPICSEvent::WriteEPICSStringValue()"
1292 TTree *slow_tree = (TTree*) file->Get(
"Slow_Tree");
1300 name.ReplaceAll(
':',
'_');
1301 TString name_type = name +
"/C";\
1303 Char_t epics_char[128];
1304 TString epics_string;
1306 TBranch *new_branch = slow_tree->Branch(name, epics_char, name_type);
1312 epics_string =
"empty";
1316 std::cout <<
"QwEPICSEvent::WriteEPICSStringValue()\n";
1317 std::cout << name <<
" " << epics_string << std::endl;
1321 sprintf(epics_char,
"%s", epics_string.Data());
1327 file -> Write(
"", TObject::kOverwrite);
1339 Int_t ihwppolarity = 0;
1345 QwWarning <<
"IHWP state is not well defined: "
1349 QwDebug <<
"QwEPICSEvent::DetermineIHWPPolarity: "
1350 <<
"raw IHWP polarity is: "
1353 QwDebug <<
"QwEPICSEvent::DetermineIHWPPolarity: "
1354 <<
"IHWP polarity after extra reversal is: "
1356 return ihwppolarity;
1362 Double_t launchangle = 0.0;
1367 Double_t hoffset = 0.0;
1368 if (fabs(vwienangle)<10.0 && fabs(phiangle)<10.0){
1370 }
else if (fabs(vwienangle)>80.0 && fabs(phiangle)>80.0
1371 && fabs(vwienangle+phiangle)<10. ){
1373 }
else if (fabs(vwienangle)>80.0 && fabs(phiangle)>80.0
1374 && fabs(vwienangle+phiangle)>170. ){
1376 }
else if (fabs(vwienangle)>80.0 && fabs(phiangle)<10.0) {
1380 launchangle = hoffset+hwienangle;
1381 Double_t long_proj =
1383 if (long_proj > 0.5){
1385 }
else if (long_proj < -0.5){
1387 }
else if (fabs(long_proj)<0.25){
void ProcessOptions(QwOptions &options)
Process the configuration options.
#define QwMessage
Predefined log drain for regular messages.
Bool_t IsNumber(const string &word)
#define default_bool_value(b)
Bool_t Connect()
Open a connection to the database using the predefined parameters.
EQwEPICSDataType
EPICS data types.
static void InitDefaultAutogainList()
Initialize the default autogain list.
Double_t GetDataValue(const string &tag) const
Int_t DetermineIHWPPolarity() const
Double_t fNominalWienAngle
Bool_t HasVariablePair(const std::string &separatorchars, std::string &varname, std::string &varvalue)
void TrimComment(const char commentchar)
virtual ~QwEPICSEvent()
Virtual destructor.
void FillDB(QwParityDB *db)
void FillSlowControlsSettings(QwParityDB *db)
Int_t FindIndex(const string &tag) const
Find the index of an EPICS variable, or return error.
EQwWienMode
Double Wien configuration.
static void SetDefaultAutogainList(std::vector< std::string > &input_list)
Int_t fNumberEPICSVariables
std::vector< EPICSCumulativeRecord > fEPICSCumulativeData
std::vector< EQwEPICSDataType > fEPICSVariableType
po::options_description_easy_init AddOptions(const std::string &blockname="Specialized options")
Add an option to a named block or create new block.
void ExtractEPICSValues(const string &data, int event)
T GetValue(const std::string &key)
Get a templated value.
Bool_t fBlinderReversalForRunTwo
int SetDataValue(const string &tag, const double value, const int event)
#define QwDebug
Predefined log drain for debugging output.
static const int kEPICS_OK
A logfile class, based on an identical class in the Hermes analyzer.
void FillSlowControlsStrigs(QwParityDB *db)
TString GetDataString(const string &tag) const
static std::vector< std::string > fDefaultAutogainList
Default autogain list.
Int_t LoadChannelMap(TString mapfile)
TList * GetEPICSStringValues()
static const Double_t kInvalidEPICSData
static void DefineOptions(QwOptions &options)
Define the configuration options.
std::vector< std::string > fEPICSTableList
mysqlpp::Query Query(const char *qstr=0)
void PrintVariableList() const
EQwWienMode DetermineWienMode() const
size_t fTreeArrayNumEntries
void FillSlowControlsData(QwParityDB *db)
void ConstructBranchAndVector(TTree *tree, TString &prefix, std::vector< Double_t > &values)
Construct the branch and tree vector.
std::vector< EPICSVariableRecord > fEPICSDataEvent
Int_t fExtraHelicityReversal
void SetDataLoaded(Bool_t flag)
std::map< std::string, Int_t > fEPICSVariableMap
static std::ostream & endl(std::ostream &)
End of the line.
void WriteEPICSStringValues()
static const int kEPICS_Error
Bool_t fPrecessionReversal
Int_t AddEPICSTag(const string &tag, const string &table="", EQwEPICSDataType datatype=kEPICSFloat)
void ReportEPICSData() const
EQwWienMode WienModeIndex(TString name)
void TrimWhitespace(TString::EStripType head_tail=TString::kBoth)
void PrintAverages() const
std::vector< std::string > fEPICSVariableList
#define QwWarning
Predefined log drain for warnings.
UInt_t GetSlowControlDetectorID(const string &name)
QwEPICSEvent()
Default constructor.
std::vector< Double_t > ReportAutogains(std::vector< std::string > tag_list=fDefaultAutogainList)
void CalculateRunningValues()
std::string WienModeName(EQwWienMode type)
#define QwError
Predefined log drain for errors.
void FillTreeVector(std::vector< Double_t > &values) const
Fill the tree vector.