66 cout <<
"L1T Monitoring histograms will be saved to " <<
m_outputFile.c_str() << endl;
92 ibooker.setCurrentFolder(
"L1T/L1TRate");
93 m_ErrorMonitor = ibooker.book1D(
"ErrorMonitor",
"ErrorMonitor", 5, 0, 5);
125 TString tCategory = (*i).first;
126 TString tTrigger = (*i).second;
128 TString tErrorMessage =
"";
133 }
else if (tTrigger ==
"Undefined") {
134 TString tFunc =
"-1";
135 tTestFunction =
new TF1(
"FitParametrization_" + tTrigger, tFunc, 0,
double(
m_maxNbins) - 0.5);
137 TString tFunc =
"-1";
138 tTestFunction =
new TF1(
"FitParametrization_" + tTrigger, tFunc, 0,
double(
m_maxNbins) - 0.5);
139 tErrorMessage =
" (Undefined Test Function)";
141 TString tFunc =
"-1";
142 tTestFunction =
new TF1(
"FitParametrization_" + tTrigger, tFunc, 0,
double(
m_maxNbins) - 0.5);
145 if (tTrigger !=
"Undefined") {
147 tErrorMessage +=
" WARNING: Default Prescale = ";
151 if (tCategory ==
"Mu" && myMenuHelper.
getEtaRangeByAlias(tCategory, tTrigger) != 4294967295) {
152 tErrorMessage +=
" WARNING: Eta Range = ";
154 }
else if (tCategory ==
"EG" && myMenuHelper.
getEtaRangeByAlias(tCategory, tTrigger) != 32639) {
155 tErrorMessage +=
" WARNING: Eta Range = ";
157 }
else if (tCategory ==
"IsoEG" && myMenuHelper.
getEtaRangeByAlias(tCategory, tTrigger) != 32639) {
158 tErrorMessage +=
" WARNING: Eta Range = ";
162 if (tCategory ==
"Mu" && myMenuHelper.
getQualityAlias(tCategory, tTrigger) != 240) {
163 tErrorMessage +=
" WARNING: Quality = ";
168 ibooker.setCurrentFolder(
"L1T/L1TRate/TriggerCrossSections");
170 "Cross Sec. vs Inst. Lumi Algo: " + tTrigger + tErrorMessage,
176 m_xSecVsInstLumi[tTrigger]->setAxisTitle(
"Instantaneous Luminosity [10^{30}cm^{-2}s^{-1}]", 1);
178 m_xSecVsInstLumi[tTrigger]->getTProfile()->GetListOfFunctions()->Add(tTestFunction);
181 ibooker.setCurrentFolder(
"L1T/L1TRate/Certification");
183 ibooker.book1D(tCategory,
"Algo: " + tTrigger + tErrorMessage,
m_maxNbins, -0.5,
double(
m_maxNbins) - 0.5);
192 cout <<
"[L1TRate:] Called beginRun." << endl;
206 cout <<
"[L1TRate:] Called endLuminosityBlock at LS=" << eventLS << endl;
216 bool isDefRate, isDefLumi, isDefPrescaleIndex;
217 map<TString, double>* rates =
nullptr;
219 int prescalesIndex = 0;
223 string tTrigger = (*i).second;
229 unsigned int ls = (*i).first;
230 rates = &(*i).second;
241 isDefPrescaleIndex =
false;
243 isDefPrescaleIndex =
true;
247 if (isDefRate && isDefLumi && isDefPrescaleIndex) {
248 const vector<int>& currentPrescaleFactors = (*m_listsPrescaleFactors).at(prescalesIndex);
251 string tTrigger = (*i).second;
255 if (tTrigger !=
"Undefined") {
256 unsigned int trigBit =
m_algoBit[tTrigger];
257 double trigPrescale = currentPrescaleFactors[trigBit];
258 double trigRate = (*rates)[tTrigger];
260 if (
lumi != 0 && trigPrescale != 0 && trigRate != 0) {
261 double AlgoXSec = (trigPrescale * trigRate) /
lumi;
262 double TemplateFunctionValue = tTestFunction->Eval(
lumi);
270 cout <<
"[L1TRate:] ls=" <<
ls <<
" Algo=" << tTrigger <<
" XSec=" << AlgoXSec
271 <<
" Test=" << AlgoXSec / TemplateFunctionValue << endl;
278 cout <<
"[L1TRate:] Algo=" << tTrigger <<
" XSec=Failed" << endl;
298 int EventRun =
iEvent.id().run();
299 unsigned int eventLS =
iEvent.id().luminosityBlock();
302 if (triggerScalers.
isValid()) {
303 Level1TriggerScalersCollection::const_iterator itL1TScalers = triggerScalers->begin();
311 cout <<
"[L1TRate:] Buffering GT Rates for LS=" << gtLS << endl;
313 map<TString, double> bufferRate;
317 string tTrigger = (*i).second;
320 if (tTrigger !=
"Undefined") {
321 unsigned int trigBit =
m_algoBit[tTrigger];
324 bufferRate[tTrigger] = trigRate;
332 if (colLScal.
isValid() && !colLScal->empty()) {
333 LumiScalersCollection::const_iterator itLScal = colLScal->begin();
334 unsigned int scalLS = itLScal->sectionNumber();
339 cout <<
"[L1TRate:] Buffering SCAL-HF Lumi for LS=" << scalLS << endl;
341 double instLumi = itLScal->instantLumi();
342 double deadTimeNormHF = itLScal->deadTimeNormalization();
348 if (deadTimeNormHF == 0) {
360 if (gtReadoutRecordData.
isValid()) {
364 cout <<
"[L1TRate:] Buffering Prescale Index for LS=" << eventLS << endl;
368 const vector<L1GtFdlWord>& gtFdlVectorData = gtReadoutRecordData->
gtFdlVector();
372 for (
unsigned int i = 0;
i < gtFdlVectorData.size();
i++) {
373 if (gtFdlVectorData[
i].bxInEvent() == 0) {
379 int CurrentPrescalesIndex = gtFdlVectorData[indexFDL].gtPrescaleFactorIndexAlgo();
404 map<string, WbMTriggerXSecFit> wbmFits;
408 wbmFits = myOMDSHelper.getWbMAlgoXsecFits(errorRetrive);
413 string eName = myOMDSHelper.enumToStringError(errorRetrive);
418 string eName = myOMDSHelper.enumToStringError(conError);
427 string tTrigger = (*a).second;
430 if (tTrigger !=
"Undefined") {
431 if (wbmFits.find(tTrigger) != wbmFits.end()) {
434 vector<double> tParameters;
435 tParameters.push_back(tWbMParameters.
pm1);
436 tParameters.push_back(tWbMParameters.
p0);
437 tParameters.push_back(tWbMParameters.
p1);
438 tParameters.push_back(tWbMParameters.
p2);
472 std::vector<edm::ParameterSet> m_fitParameters = ps.
getParameter<vector<ParameterSet> >(
"fitParameters");
479 string tTrigger = (*a).second;
482 if (tTrigger !=
"Undefined") {
483 bool foundFit =
false;
485 for (
unsigned int b = 0;
b < m_fitParameters.size();
b++) {
486 if (tTrigger == m_fitParameters[
b].getParameter<string>(
"AlgoName")) {
487 TString tAlgoName = m_fitParameters[
b].getParameter<
string>(
"AlgoName");
488 TString tTemplateFunction = m_fitParameters[
b].getParameter<
string>(
"TemplateFunction");
489 vector<double> tParameters = m_fitParameters[
b].getParameter<vector<double> >(
"Parameters");
504 string eName =
"WARNING_PY_MISSING_FIT";