#include <L1TOMDSHelper.h>
Public Types | |
enum | Error { NO_ERROR = 0, WARNING_DB_CONN_FAILED, WARNING_DB_QUERY_FAILED, WARNING_DB_INCORRECT_NBUNCHES } |
Public Member Functions | |
bool | connect (std::string iOracleDB, std::string iPathCondDB, int &error) |
std::string | enumToStringError (int) |
BeamConfiguration | getBeamConfiguration (int lhcFillNumber, int &error) |
std::vector< bool > | getBunchStructure (int lhcFillNumber, int &error) |
std::vector< float > | getInitBunchLumi (int lhcFillNumber, int &error) |
int | getNumberCollidingBunches (int lhcFillNumber, int &error) |
std::vector< double > | getRelativeBunchLumi (int lhcFillNumber, int &error) |
std::map< std::string, WbMTriggerXSecFit > | getWbMAlgoXsecFits (int &error) |
std::map< std::string, WbMTriggerXSecFit > | getWbMTechXsecFits (int &error) |
std::map< std::string, WbMTriggerXSecFit > | getWbMTriggerXsecFits (std::string iTable, int &error) |
L1TOMDSHelper () | |
~L1TOMDSHelper () | |
Private Attributes | |
l1t::OMDSReader * | m_omdsReader |
std::string | m_oracleDB |
std::string | m_pathCondDB |
Definition at line 48 of file L1TOMDSHelper.h.
enum L1TOMDSHelper::Error |
Definition at line 52 of file L1TOMDSHelper.h.
L1TOMDSHelper::L1TOMDSHelper | ( | ) |
Definition at line 10 of file L1TOMDSHelper.cc.
{ m_omdsReader = 0; }
L1TOMDSHelper::~L1TOMDSHelper | ( | ) |
Definition at line 17 of file L1TOMDSHelper.cc.
{ delete m_omdsReader; }
bool L1TOMDSHelper::connect | ( | std::string | iOracleDB, |
std::string | iPathCondDB, | ||
int & | error | ||
) |
Referenced by L1TRate::getXSexFitsOMDS().
string L1TOMDSHelper::enumToStringError | ( | int | iObject | ) |
Definition at line 345 of file L1TOMDSHelper.cc.
References dbtoconf::out.
{ string out; switch(iObject){ case NO_ERROR: out = "NO_ERROR"; break; case WARNING_DB_CONN_FAILED: out = "WARNING_DB_CONN_FAILED"; break; case WARNING_DB_QUERY_FAILED: out = "WARNING_DB_QUERY_FAILED"; break; case WARNING_DB_INCORRECT_NBUNCHES: out = "WARNING_DB_INCORRECT_NBUNCHES"; break; default: out = "UNKNOWN"; break; }; return out; }
BeamConfiguration L1TOMDSHelper::getBeamConfiguration | ( | int | lhcFillNumber, |
int & | error | ||
) |
Definition at line 165 of file L1TOMDSHelper.cc.
References BeamConfiguration::beam1, BeamConfiguration::beam2, l1t::OMDSReader::QueryResults::fillVariableFromRow(), i, BeamConfiguration::m_valid, l1t::OMDSReader::QueryResults::numberRows(), l1t::OMDSReader::QueryResults::queryFailed(), and asciidump::table.
{ BeamConfiguration bConfig; error = NO_ERROR; // Fields to retrive in the query string rtlSchema = "CMS_RUNTIME_LOGGER"; string table = "FILL_INITLUMIPERBUNCH"; string atribute1 = "LHCFILL"; // Setting the strings we want to recover from OMDS vector<std::string> qStrings ; qStrings.push_back("BUNCH"); qStrings.push_back("BEAM1CONFIG"); qStrings.push_back("BEAM2CONFIG"); l1t::OMDSReader::QueryResults qResults = m_omdsReader->basicQuery(qStrings,rtlSchema,table,atribute1,m_omdsReader->singleAttribute(lhcFillNumber)); if(qResults.queryFailed()){error = WARNING_DB_QUERY_FAILED;} else{ if(qResults.numberRows() != 3564){error = WARNING_DB_INCORRECT_NBUNCHES;} else{ bConfig.m_valid = true; for(int i=0; i<qResults.numberRows();++i){ int bunch; bool beam1config,beam2config; qResults.fillVariableFromRow("BUNCH" ,i,bunch); qResults.fillVariableFromRow("BEAM1CONFIG",i,beam1config); qResults.fillVariableFromRow("BEAM2CONFIG",i,beam2config); if(beam1config){bConfig.beam1.push_back(true);} else {bConfig.beam1.push_back(false);} if(beam2config){bConfig.beam2.push_back(true);} else {bConfig.beam2.push_back(false);} } } } return bConfig; }
vector< bool > L1TOMDSHelper::getBunchStructure | ( | int | lhcFillNumber, |
int & | error | ||
) |
Definition at line 214 of file L1TOMDSHelper.cc.
References l1t::OMDSReader::QueryResults::fillVariableFromRow(), i, l1t::OMDSReader::QueryResults::numberRows(), l1t::OMDSReader::QueryResults::queryFailed(), and asciidump::table.
{ vector<bool> BunchStructure; error = NO_ERROR; // Fields to retrive in the query string rtlSchema = "CMS_RUNTIME_LOGGER"; string table = "FILL_INITLUMIPERBUNCH"; string atribute1 = "LHCFILL"; // Setting the strings we want to recover from OMDS vector<std::string> qStrings ; qStrings.push_back("BUNCH"); qStrings.push_back("BEAM1CONFIG"); qStrings.push_back("BEAM2CONFIG"); l1t::OMDSReader::QueryResults qResults = m_omdsReader->basicQuery(qStrings,rtlSchema,table,atribute1,m_omdsReader->singleAttribute(lhcFillNumber)); if(qResults.queryFailed()){error = WARNING_DB_QUERY_FAILED;} else{ if(qResults.numberRows() != 3564){error = WARNING_DB_INCORRECT_NBUNCHES;} else{ for(int i=0; i<qResults.numberRows();++i){ int bunch; bool beam1config,beam2config; qResults.fillVariableFromRow("BUNCH" ,i,bunch); qResults.fillVariableFromRow("BEAM1CONFIG",i,beam1config); qResults.fillVariableFromRow("BEAM2CONFIG",i,beam2config); if(beam1config && beam2config){BunchStructure.push_back(true);} else {BunchStructure.push_back(false);} } } } return BunchStructure; }
vector< float > L1TOMDSHelper::getInitBunchLumi | ( | int | lhcFillNumber, |
int & | error | ||
) |
Definition at line 257 of file L1TOMDSHelper.cc.
References l1t::OMDSReader::QueryResults::fillVariableFromRow(), i, l1t::OMDSReader::QueryResults::numberRows(), l1t::OMDSReader::QueryResults::queryFailed(), and asciidump::table.
{ vector<float> InitBunchLumi; error = NO_ERROR; // Fields to retrive in the query string rtlSchema = "CMS_RUNTIME_LOGGER"; string table = "FILL_INITLUMIPERBUNCH"; string atribute1 = "LHCFILL"; // Setting the strings we want to recover from OMDS vector<std::string> qStrings ; qStrings.push_back("BUNCH"); qStrings.push_back("INITBUNCHLUMI"); l1t::OMDSReader::QueryResults qResults = m_omdsReader->basicQuery(qStrings,rtlSchema,table,atribute1,m_omdsReader->singleAttribute(lhcFillNumber)); if(qResults.queryFailed()){error = WARNING_DB_QUERY_FAILED;} else{ if(qResults.numberRows() != 3564){error = WARNING_DB_INCORRECT_NBUNCHES;} else{ for(int i=0; i<qResults.numberRows();++i){ int bunch; float initbunchlumi; qResults.fillVariableFromRow("BUNCH" ,i,bunch); qResults.fillVariableFromRow("INITBUNCHLUMI",i,initbunchlumi); InitBunchLumi.push_back(initbunchlumi); } } } return InitBunchLumi; }
int L1TOMDSHelper::getNumberCollidingBunches | ( | int | lhcFillNumber, |
int & | error | ||
) |
Definition at line 122 of file L1TOMDSHelper.cc.
References l1t::OMDSReader::QueryResults::fillVariableFromRow(), i, l1t::OMDSReader::QueryResults::numberRows(), l1t::OMDSReader::QueryResults::queryFailed(), and asciidump::table.
{ int nCollidingBunches = 0; error = NO_ERROR; // Parameters string rtlSchema = "CMS_RUNTIME_LOGGER"; string table = "FILL_INITLUMIPERBUNCH"; string atribute1 = "LHCFILL"; // Fields to retrive in the query vector<std::string> qStrings ; qStrings.push_back("BUNCH"); qStrings.push_back("BEAM1CONFIG"); qStrings.push_back("BEAM2CONFIG"); l1t::OMDSReader::QueryResults qResults = m_omdsReader->basicQuery(qStrings,rtlSchema,table,atribute1,m_omdsReader->singleAttribute(lhcFillNumber)); // Check query successful if(qResults.queryFailed()){error = WARNING_DB_QUERY_FAILED;} else{ if(qResults.numberRows() != 3564){error = WARNING_DB_INCORRECT_NBUNCHES;} else{ // Now we count the number of bunches with both beam 1 and 2 configured for(int i=0; i<qResults.numberRows();++i){ int bunch; bool beam1config,beam2config; qResults.fillVariableFromRow("BUNCH" ,i,bunch); qResults.fillVariableFromRow("BEAM1CONFIG" ,i,beam1config); qResults.fillVariableFromRow("BEAM2CONFIG" ,i,beam2config); if(beam1config && beam2config){nCollidingBunches++;} } } } return nCollidingBunches; }
vector< double > L1TOMDSHelper::getRelativeBunchLumi | ( | int | lhcFillNumber, |
int & | error | ||
) |
Definition at line 296 of file L1TOMDSHelper.cc.
References l1t::OMDSReader::QueryResults::fillVariableFromRow(), i, l1t::OMDSReader::QueryResults::numberRows(), l1t::OMDSReader::QueryResults::queryFailed(), and asciidump::table.
{ vector<double> RelativeBunchLumi; error = NO_ERROR; // Fields to retrive in the query string rtlSchema = "CMS_RUNTIME_LOGGER"; string table = "FILL_INITLUMIPERBUNCH"; string atribute1 = "LHCFILL"; // Setting the strings we want to recover from OMDS vector<std::string> qStrings ; qStrings.push_back("BUNCH"); qStrings.push_back("INITBUNCHLUMI"); l1t::OMDSReader::QueryResults qResults = m_omdsReader->basicQuery(qStrings,rtlSchema,table,atribute1,m_omdsReader->singleAttribute(lhcFillNumber)); if(qResults.queryFailed()){error = WARNING_DB_QUERY_FAILED;} else{ if(qResults.numberRows() != 3564){error = WARNING_DB_INCORRECT_NBUNCHES;} else{ //-> Get the inicial bunch luminosity add calculate the total luminosity of the fill double InitTotalLumi = 0; vector<float> InitBunchLumi; for(int i=0; i<qResults.numberRows();++i){ int bunch; float initbunchlumi; qResults.fillVariableFromRow("BUNCH" ,i,bunch); qResults.fillVariableFromRow("INITBUNCHLUMI",i,initbunchlumi); InitTotalLumi += initbunchlumi; InitBunchLumi.push_back(initbunchlumi); } //-> We calculate the relative luminosity for each bunch for(unsigned int i=0 ; i<InitBunchLumi.size() ; i++){ RelativeBunchLumi.push_back(InitBunchLumi[i]/InitTotalLumi); } } } return RelativeBunchLumi; }
map< string, WbMTriggerXSecFit > L1TOMDSHelper::getWbMAlgoXsecFits | ( | int & | error | ) |
Definition at line 112 of file L1TOMDSHelper.cc.
{ return getWbMTriggerXsecFits("LEVEL1_ALGO_CROSS_SECTION",error); }
map< string, WbMTriggerXSecFit > L1TOMDSHelper::getWbMTechXsecFits | ( | int & | error | ) |
Definition at line 117 of file L1TOMDSHelper.cc.
{ return getWbMTriggerXsecFits("LEVEL1_TECH_CROSS_SECTION",error); }
map< string, WbMTriggerXSecFit > L1TOMDSHelper::getWbMTriggerXsecFits | ( | std::string | iTable, |
int & | error | ||
) |
Definition at line 63 of file L1TOMDSHelper.cc.
References WbMTriggerXSecFit::bitName, WbMTriggerXSecFit::bitNumber, l1t::OMDSReader::QueryResults::fillVariableFromRow(), WbMTriggerXSecFit::fitFunction, i, l1t::OMDSReader::QueryResults::numberRows(), dbtoconf::out, WbMTriggerXSecFit::p0, WbMTriggerXSecFit::p1, WbMTriggerXSecFit::p2, WbMTriggerXSecFit::pm1, and l1t::OMDSReader::QueryResults::queryFailed().
{ map<string,WbMTriggerXSecFit> out; const l1t::OMDSReader::QueryResults qresults; error = NO_ERROR; // Parameters string qSchema = "CMS_WBM"; // Fields to retrive in the query vector<string> qStrings; qStrings.push_back("BIT"); qStrings.push_back("NAME"); qStrings.push_back("PM1"); //Inverse qStrings.push_back("P0"); //Constant qStrings.push_back("P1"); //Linear qStrings.push_back("P2"); //Quadratic l1t::OMDSReader::QueryResults paramResults = m_omdsReader->basicQuery(qStrings,qSchema,iTable,"",qresults); if(paramResults.queryFailed()){error = WARNING_DB_QUERY_FAILED;} else{ for(int i=0; i<paramResults.numberRows();++i){ WbMTriggerXSecFit tFit; tFit.fitFunction = "[0]/x+[1]+[2]*x+[3]*x*x"; // Fitting function hardcoded for now string tBitName; paramResults.fillVariableFromRow("BIT" ,i,tFit.bitNumber); paramResults.fillVariableFromRow("NAME",i,tBitName); paramResults.fillVariableFromRow("PM1" ,i,tFit.pm1); paramResults.fillVariableFromRow("P0" ,i,tFit.p0); paramResults.fillVariableFromRow("P1" ,i,tFit.p1); paramResults.fillVariableFromRow("P2" ,i,tFit.p2); tFit.bitName = tBitName; out[tBitName] = tFit; } } return out; }
l1t::OMDSReader* L1TOMDSHelper::m_omdsReader [private] |
Definition at line 82 of file L1TOMDSHelper.h.
std::string L1TOMDSHelper::m_oracleDB [private] |
Definition at line 79 of file L1TOMDSHelper.h.
std::string L1TOMDSHelper::m_pathCondDB [private] |
Definition at line 80 of file L1TOMDSHelper.h.