Skip to content
Snippets Groups Projects
Commit d04e7b28 authored by Pavol Strizenec's avatar Pavol Strizenec Committed by Frank Winklmeier
Browse files

LArCellMonAlg trigger names

parent 07114d35
No related branches found
No related tags found
No related merge requests found
......@@ -164,6 +164,12 @@ def LArCellMonConfigCore(helper, algclass, inputFlags, isCosmics=False, isMC=Fal
binlabels=["TotalEvents","ATLAS Ready","with Good LAr LB","with No LAr Collision","with No Beam Background", "with No Trigger Filter","with No LArError"]
# triggers to use
LArCellMonAlg.rndmTriggerNames = "L1_RD0, L1_RD0_FILLED, L1_RD0_EMPTY, L1_RD1, L1_RD1_NOISE, L1_RD1_HIST, L1_RD1_BGRP4, L1_RD1_BGRP5"
LArCellMonAlg.caloTriggerNames = "L1_EM[0-9]+, L1_HA[0-9]+, L1_J[0-9]+.*, L1_JB[0-9]+, L1_JF[0-9]+, L1_TE[0-9]+, L1_JE[0-9]+, L1_XE[0-9]+, L1_2EM[0-9]+, L1_2FJ[0-9]+, L1_2J[0-9]+,L1_3J[0-9]+.*,L1_4J[0-9]+.*,L1_5J[0-9]+,L1_6J[0-9]+,L1_FJ[0-9]+.*"
LArCellMonAlg.minBiasTriggerNames = "L1_RD0_FILLED, L1_MBTS_1, L1_MBTS_2, L1_MBTS_1_1"
LArCellMonAlg.metTriggerNames = "EF_xe[0-9]+.*"
LArCellMonAlg.miscTriggerNames = ""
# Global Settings:
......
......@@ -293,10 +293,8 @@ StatusCode LArCellMonAlg::bookHistograms() {
void LArCellMonAlg::checkTriggerAndBeamBackground(bool passBeamBackgroundRemoval, std::vector<threshold_t> &thresholds) const {
auto mon_trig = Monitored::Scalar<float>("trigType",-1);
mon_trig=0.5;
fill(m_MonGroupName,mon_trig);
//m_h_n_trigEvent->Fill(0.5);
if (m_useTrigger && !getTrigDecisionTool().empty()) {
std::bitset<MAXTRIGTYPE> triggersPassed(0x1<<NOTA); //Last bit: NOTA, always passes
......@@ -327,7 +325,6 @@ void LArCellMonAlg::checkTriggerAndBeamBackground(bool passBeamBackgroundRemoval
else {
mon_trig=6.5;
fill(m_MonGroupName,mon_trig);
//m_h_n_trigEvent->Fill(6.5);
}
//Note that thr.m_threshTriggerDecision remains in it's default state 'true' if trigger wasn't used
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment