36 m_l1GtUtils(ps, consumesCollector(),
false, *this) {
69 cout <<
"L1T Monitoring histograms will be saved to " <<
m_outputFile.c_str() << endl;
113 for (
const auto&
algo :
menu.gtAlgorithmMap()) {
122 TString tCategory = (*i).first;
123 TString tTrigger = (*i).second;
125 TString tErrorMessage =
"";
130 }
else if (tTrigger ==
"Undefined") {
131 TString tFunc =
"-1";
132 tTestFunction =
new TF1(
"FitParametrization_" + tTrigger, tFunc, 0,
double(
m_maxNbins) - 0.5);
134 TString tFunc =
"-1";
135 tTestFunction =
new TF1(
"FitParametrization_" + tTrigger, tFunc, 0,
double(
m_maxNbins) - 0.5);
136 tErrorMessage =
" (Undefined Test Function)";
138 TString tFunc =
"-1";
139 tTestFunction =
new TF1(
"FitParametrization_" + tTrigger, tFunc, 0,
double(
m_maxNbins) - 0.5);
142 if (tTrigger !=
"Undefined") {
144 tErrorMessage +=
" WARNING: Default Prescale = ";
148 if (tCategory ==
"Mu" && myMenuHelper.
getEtaRangeByAlias(tCategory, tTrigger) != 4294967295) {
149 tErrorMessage +=
" WARNING: Eta Range = ";
151 }
else if (tCategory ==
"EG" && myMenuHelper.
getEtaRangeByAlias(tCategory, tTrigger) != 32639) {
152 tErrorMessage +=
" WARNING: Eta Range = ";
154 }
else if (tCategory ==
"IsoEG" && myMenuHelper.
getEtaRangeByAlias(tCategory, tTrigger) != 32639) {
155 tErrorMessage +=
" WARNING: Eta Range = ";
159 if (tCategory ==
"Mu" && myMenuHelper.
getQualityAlias(tCategory, tTrigger) != 240) {
160 tErrorMessage +=
" WARNING: Quality = ";
167 "Cross Sec. vs Inst. Lumi Algo: " + tTrigger + tErrorMessage,
173 m_xSecVsInstLumi[tTrigger]->setAxisTitle(
"Instantaneous Luminosity [10^{30}cm^{-2}s^{-1}]", 1);
175 m_xSecVsInstLumi[tTrigger]->getTProfile()->GetListOfFunctions()->Add(tTestFunction);
189 cout <<
"[L1TRate:] Called beginRun." << endl;
203 cout <<
"[L1TRate:] Called endLuminosityBlock at LS=" << eventLS << endl;
213 bool isDefRate, isDefLumi, isDefPrescaleIndex;
214 map<TString, double>* rates =
nullptr;
216 int prescalesIndex = 0;
220 string tTrigger = (*i).second;
226 unsigned int ls = (*i).first;
227 rates = &(*i).second;
238 isDefPrescaleIndex =
false;
240 isDefPrescaleIndex =
true;
244 if (isDefRate && isDefLumi && isDefPrescaleIndex) {
245 const vector<int>& currentPrescaleFactors = (*m_listsPrescaleFactors).at(prescalesIndex);
248 string tTrigger = (*i).second;
249 TF1* tTestFunction = (TF1*)
m_xSecVsInstLumi[tTrigger]->getTProfile()->GetListOfFunctions()->First();
252 if (tTrigger !=
"Undefined") {
253 unsigned int trigBit =
m_algoBit[tTrigger];
254 double trigPrescale = currentPrescaleFactors[trigBit];
255 double trigRate = (*rates)[tTrigger];
257 if (
lumi != 0 && trigPrescale != 0 && trigRate != 0) {
258 double AlgoXSec = (trigPrescale * trigRate) /
lumi;
259 double TemplateFunctionValue = tTestFunction->Eval(
lumi);
267 cout <<
"[L1TRate:] ls=" <<
ls <<
" Algo=" << tTrigger <<
" XSec=" << AlgoXSec
268 <<
" Test=" << AlgoXSec / TemplateFunctionValue << endl;
275 cout <<
"[L1TRate:] Algo=" << tTrigger <<
" XSec=Failed" << endl;
295 int EventRun =
iEvent.id().run();
296 unsigned int eventLS =
iEvent.id().luminosityBlock();
299 if (triggerScalers.
isValid()) {
300 Level1TriggerScalersCollection::const_iterator itL1TScalers = triggerScalers->begin();
308 cout <<
"[L1TRate:] Buffering GT Rates for LS=" << gtLS << endl;
310 map<TString, double> bufferRate;
314 string tTrigger = (*i).second;
317 if (tTrigger !=
"Undefined") {
318 unsigned int trigBit =
m_algoBit[tTrigger];
321 bufferRate[tTrigger] = trigRate;
329 if (colLScal.
isValid() && !colLScal->empty()) {
330 LumiScalersCollection::const_iterator itLScal = colLScal->begin();
331 unsigned int scalLS = itLScal->sectionNumber();
336 cout <<
"[L1TRate:] Buffering SCAL-HF Lumi for LS=" << scalLS << endl;
338 double instLumi = itLScal->instantLumi();
339 double deadTimeNormHF = itLScal->deadTimeNormalization();
345 if (deadTimeNormHF == 0) {
357 if (gtReadoutRecordData.
isValid()) {
361 cout <<
"[L1TRate:] Buffering Prescale Index for LS=" << eventLS << endl;
365 const vector<L1GtFdlWord>& gtFdlVectorData = gtReadoutRecordData->
gtFdlVector();
369 for (
unsigned int i = 0;
i < gtFdlVectorData.size();
i++) {
370 if (gtFdlVectorData[
i].bxInEvent() == 0) {
376 int CurrentPrescalesIndex = gtFdlVectorData[indexFDL].gtPrescaleFactorIndexAlgo();
401 map<string, WbMTriggerXSecFit> wbmFits;
405 wbmFits = myOMDSHelper.getWbMAlgoXsecFits(errorRetrive);
410 string eName = myOMDSHelper.enumToStringError(errorRetrive);
415 string eName = myOMDSHelper.enumToStringError(conError);
424 string tTrigger = (*a).second;
427 if (tTrigger !=
"Undefined") {
428 if (wbmFits.find(tTrigger) != wbmFits.end()) {
431 vector<double> tParameters;
432 tParameters.push_back(tWbMParameters.
pm1);
433 tParameters.push_back(tWbMParameters.
p0);
434 tParameters.push_back(tWbMParameters.
p1);
435 tParameters.push_back(tWbMParameters.
p2);
469 std::vector<edm::ParameterSet> m_fitParameters = ps.
getParameter<vector<ParameterSet> >(
"fitParameters");
476 string tTrigger = (*a).second;
479 if (tTrigger !=
"Undefined") {
480 bool foundFit =
false;
482 for (
unsigned int b = 0;
b < m_fitParameters.size();
b++) {
483 if (tTrigger == m_fitParameters[
b].getParameter<string>(
"AlgoName")) {
484 TString tAlgoName = m_fitParameters[
b].getParameter<
string>(
"AlgoName");
485 TString tTemplateFunction = m_fitParameters[
b].getParameter<
string>(
"TemplateFunction");
486 vector<double> tParameters = m_fitParameters[
b].getParameter<vector<double> >(
"Parameters");
501 string eName =
"WARNING_PY_MISSING_FIT";