Belle II Software development
SoftwareTriggerModule.cc
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8
9#include <hlt/softwaretrigger/modules/basics/SoftwareTriggerModule.h>
10#include <hlt/softwaretrigger/core/utilities.h>
11#include <hlt/softwaretrigger/calculations/FilterCalculator.h>
12#include <hlt/softwaretrigger/calculations/SkimSampleCalculator.h>
13#include <hlt/softwaretrigger/core/FinalTriggerDecisionCalculator.h>
14#include <TFile.h>
15
16using namespace Belle2;
17using namespace SoftwareTrigger;
18
19REG_MODULE(SoftwareTrigger);
20
21
23SoftwareTriggerModule::SoftwareTriggerModule() : Module(), m_resultStoreObjectPointer("", DataStore::c_Event)
24{
25 setDescription("Module to perform cuts on various variables in the event. The cuts can be defined\n"
26 "by elements loaded from the database. Each cut is executed and its result stored.\n"
27 "The return value of this module is a bool, which is either true (accept the event) or false (reject it).\n"
28 "It is defined from the results of the cuts in the given trigger menu, which are all evaluated\n"
29 "and the trigger mode (accept mode or not).\n"
30 "if not in accept mode (= reject mode):\n"
31 "* 1: if one of the accept cuts has a true result and none of the reject cuts is false ( = accepted)\n"
32 "* 0: if neither one of the accept cuts is true nor one of the reject cuts false ( = don't know) or\n"
33 "* if one of the reject cuts is false ( = rejected)\n"
34 "In short: event accepted <=> (#true accept cuts > 0) && (#false reject cuts == 0)\n"
35 "Please note that the reject cuts override the accept cuts decision in this case!\n"
36 "if in accept mode\n"
37 "* 1: if one of the accept cuts has a true result. ( = accepted) or\n"
38 "* if neither one of the accept cuts is true nor one of the reject cuts false ( = don't know)\n"
39 "* 0: if one of the reject cuts is false and none of the accept cuts is true ( = rejected)\n"
40 "Please note that the accept cuts override the reject cuts decision in this case!\n"
41 "In short: event accepted <=> (#true accept cuts > 0) || (#false reject cuts == 0)");
42
44
45 addParam("baseIdentifier", m_param_baseIdentifier, "Base identifier for all cuts downloaded from database. "
46 "The full db name of the cuts will be <base_identifier>/<cut_identifier>. You can only choose one identifier "
47 "to make clear that all chosen cuts belong together (and should be calculated together).",
49
50 addParam("resultStoreArrayName", m_param_resultStoreArrayName, "Store Object Pointer name for storing the "
51 "trigger decision.", m_param_resultStoreArrayName);
52
53 addParam("storeDebugOutputToROOTFile", m_param_storeDebugOutputToROOTFile, "Flag to save the results of the calculations leading "
54 "to the trigger decisions into a ROOT file. The file path and name of this file can be handled by the "
55 "debugOutputFileName parameter. Not supported during parallel processing.", m_param_storeDebugOutputToROOTFile);
56
57 addParam("preScaleStoreDebugOutputToDataStore", m_param_preScaleStoreDebugOutputToDataStore,
58 "Prescale with which to save the results of the calculations leading "
59 "to the trigger decisions into the DataStore. Leave to zero, to not store them at all.",
61
62 addParam("debugOutputFileName", m_param_debugOutputFileName, "File path and name of the ROOT "
63 "file, in which the results of the calculation are stored, if storeDebugOutput is "
64 "turned on. Please note that already present files will be overridden. "
65 "ATTENTION: This file debugging mode does not work in parallel processing.", m_param_debugOutputFileName);
66 addParam("useRandomNumbersForPreScale", m_param_useRandomNumbersForPreScale, "Flag to use random numbers (True) "
67 "or a counter (False) for applying the prescale.", m_param_useRandomNumbersForPreScale);
68}
69
71{
74
77}
78
80{
81 m_dbHandler->checkForChangedDBEntries();
82 // Initialize always the internal counters at the beginning of each run.
85 }
86}
87
89{
90 if (m_debugTTree) {
92 m_debugOutputFile->Write();
93 m_debugTTree.reset();
94 m_debugOutputFile.reset();
95 }
96}
97
100{
101 if (not m_resultStoreObjectPointer.isValid()) {
102 m_resultStoreObjectPointer.construct();
103 }
104
106 m_debugOutputStoreObject.construct();
107 }
108
109 B2DEBUG(20, "Doing the calculation...");
110 const SoftwareTriggerObject& prefilledObject = m_calculation->fillInCalculations();
111 B2DEBUG(20, "Successfully finished the calculation.");
112
113 makeCut(prefilledObject);
115}
116
118{
119 if (m_param_baseIdentifier == "filter") {
120 m_calculation.reset(new FilterCalculator());
121 } else if (m_param_baseIdentifier == "skim") {
123 } else {
124 B2FATAL("You gave an invalid base identifier " << m_param_baseIdentifier << ".");
125 }
126
127 m_calculation->requireStoreArrays();
128}
129
131{
133 m_debugOutputFile.reset(TFile::Open(m_param_debugOutputFileName.c_str(), "RECREATE"));
134 if (not m_debugOutputFile) {
135 B2FATAL("Could not open debug output file. Aborting.");
136 }
137 m_debugTTree.reset(new TTree("software_trigger_results", "software_trigger_results"));
138 if (not m_debugTTree) {
139 B2FATAL("Could not create debug output tree. Aborting.");
140 }
141 }
142
145 }
146}
147
149{
150 // Clear the vector of counters...
151 m_counters.clear();
152 // ... and then initialize it with "numberOfCuts" 0s.
153 size_t numberOfCuts = (m_dbHandler->getCutsWithNames()).size();
154 m_counters.assign(numberOfCuts, 0);
155}
156
157void SoftwareTriggerModule::makeCut(const SoftwareTriggerObject& prefilledObject)
158{
159 // Define the pointer to the counter and the index of each counter in m_counters.
160 uint32_t* counter{nullptr};
161 size_t counterIndex{0};
162 // Check all cuts with the prefilled object and write them back into the data store.
163 for (const auto& cutWithName : m_dbHandler->getCutsWithNames()) {
164 const std::string& cutIdentifier = cutWithName.first;
165 const auto& cut = cutWithName.second;
166 B2DEBUG(20, "Next processing cut " << cutIdentifier << " (" << cut->decompile() << ")");
168 counter = &m_counters.at(counterIndex++);
169 }
170 const auto& [prescaledCutResult, nonPrescaledCutResult] = cut->check(prefilledObject, counter);
171 m_resultStoreObjectPointer->addResult(cutIdentifier, prescaledCutResult, nonPrescaledCutResult);
172 }
173
174 // Also add the module result ( = the result of all cuts with this basename) for later reference.
175 const SoftwareTriggerCutResult& moduleResult =
177 m_dbHandler->getAcceptOverridesReject());
178 const std::string& moduleResultIdentifier = SoftwareTriggerDBHandler::makeTotalResultName(m_param_baseIdentifier);
179 m_resultStoreObjectPointer->addResult(moduleResultIdentifier, moduleResult);
180
181 // Return the trigger decision up to here
183 const std::string& totalResultIdentifier = SoftwareTriggerDBHandler::makeTotalResultName();
184 if (totalResult) {
185 m_resultStoreObjectPointer->addResult(totalResultIdentifier, SoftwareTriggerCutResult::c_accept);
186 } else {
187 m_resultStoreObjectPointer->addResult(totalResultIdentifier, SoftwareTriggerCutResult::c_reject);
188 }
189 setReturnValue(totalResult);
190}
191
193{
195 B2DEBUG(20, "Storing debug output to file as requested.");
196 m_calculation->writeDebugOutput(m_debugTTree);
197 B2DEBUG(20, "Finished storing the debug output to file.");
198 }
199
201 B2DEBUG(20, "Storing debug output to DataStore as requested.");
203 }
204}
In the store you can park objects that have to be accessed by various modules.
Definition: DataStore.h:51
Base class for Modules.
Definition: Module.h:72
void setDescription(const std::string &description)
Sets the description of the module.
Definition: Module.cc:214
void setPropertyFlags(unsigned int propertyFlags)
Sets the flags for the module properties.
Definition: Module.cc:208
void setReturnValue(int value)
Sets the return value for this module as integer.
Definition: Module.cc:220
@ c_ParallelProcessingCertified
This module can be run in parallel processing mode safely (All I/O must be done through the data stor...
Definition: Module.h:80
Implementation of a calculator used in the SoftwareTriggerModule to fill a SoftwareTriggerObject for ...
static SoftwareTriggerCutResult getModuleResult(const SoftwareTriggerResult &result, const std::string &baseIdentifier, bool acceptOverridesReject)
Calculate the "total_result" for a given base identifier by looping through all results with the give...
static bool getFinalTriggerDecision(const SoftwareTriggerResult &result, bool forgetTotalResult=false)
Calculate the final cut decision using all "total_results" of all sub triggers in the software trigge...
Implementation of a calculator used in the SoftwareTriggerModule to fill a SoftwareTriggerObject for ...
Helper class for performing up- and downloads of SoftwareTriggerCuts from the database.
static std::string makeTotalResultName(const std::string &baseIdentifier="all")
Handy function to create the name related to the total result of a specific trigger stage (either fil...
bool m_param_useRandomNumbersForPreScale
Flag to use random numbers or a counter for applying a prescale.
unsigned int m_param_preScaleStoreDebugOutputToDataStore
Prescale with which to save the results of the calculations into the DataStore.
std::string m_param_baseIdentifier
Base identifier for all cuts downloaded from database.
std::unique_ptr< SoftwareTriggerDBHandler > m_dbHandler
Internal handler object for the DB interface.
void initializeDebugOutput()
Helper function to initliaze debug output creation by creating a TTree and an object in the data stor...
std::string m_param_resultStoreArrayName
Store Object Pointer name for storing the trigger decision.
void initialize() override
Initialize/Require the DB object pointers and any needed store arrays.
std::string m_param_debugOutputStoreObjName
Output store object name for the debug output. Is only used if debug is turned on.
void makeCut(const SoftwareTriggerObject &prefilledObject)
Helper function to perform the actual cut on the prefilled object and set the return value of the mod...
void event() override
Run over all cuts and check them. If one of the cuts yields true, give a positive return value of the...
void terminate() override
Store and delete the ttree if it was created.
std::unique_ptr< SoftwareTriggerCalculation > m_calculation
Internal handler for the Calculations (will be set in initialize to the correct one).
void beginRun() override
Check if the cut representations in the database have changed and download newer ones if needed.
std::vector< uint32_t > m_counters
Vector of the internal counters used to apply a prescale.
void initializeCalculation()
Helper function to initialize the calculation by creating a new calculation object and requiring all ...
bool m_param_storeDebugOutputToROOTFile
Flag to also store the result of the calculations into a root file.
SoftwareTriggerModule()
Create a new module instance and set the parameters.
void makeDebugOutput()
Helper function to store the calculated variables from the calculation either in the TTree or in the ...
std::string m_param_debugOutputFileName
Output file name for the debug output. Is only used if debug is turned on.
void initializeCounters()
Helper function to initialize the internal counters used for each cut identifier.
StoreObjPtr< SoftwareTriggerResult > m_resultStoreObjectPointer
Store Object for storing the trigger decision.
std::unique_ptr< TFile > m_debugOutputFile
TFile to store the debug TTree (or a nullptr if we do not save the debug output).
std::unique_ptr< TTree > m_debugTTree
TTree to store the debug output (or a nullptr if we do not save the debug output).
StoreObjPtr< SoftwareTriggerVariables > m_debugOutputStoreObject
TTree living in the datastore for debug reasons.
void addParam(const std::string &name, T &paramVariable, const std::string &description, const T &defaultValue)
Adds a new parameter to the module.
Definition: Module.h:560
#define REG_MODULE(moduleName)
Register the given module (without 'Module' suffix) with the framework.
Definition: Module.h:650
SoftwareTriggerCutResult
Enumeration with all possible results of the SoftwareTriggerCut.
@ c_accept
Accept this event.
@ c_reject
Reject this event.
Abstract base class for different kinds of events.