 |
Belle II Software
release-05-02-19
|
11 #include <hlt/softwaretrigger/modules/basics/SoftwareTriggerModule.h>
12 #include <hlt/softwaretrigger/core/utilities.h>
13 #include <hlt/softwaretrigger/calculations/FilterCalculator.h>
14 #include <hlt/softwaretrigger/calculations/SkimSampleCalculator.h>
15 #include <hlt/softwaretrigger/core/FinalTriggerDecisionCalculator.h>
19 using namespace SoftwareTrigger;
27 setDescription(
"Module to perform cuts on various variables in the event. The cuts can be defined\n"
28 "by elements loaded from the database. Each cut is executed and its result stored.\n"
29 "The return value of this module is a bool, which is either true (accept the event) or false (reject it).\n"
30 "It is defined from the results of the cuts in the given trigger menu, which are all evaluated\n"
31 "and the trigger mode (accept mode or not).\n"
32 "if not in accept mode (= reject mode):\n"
33 "* 1: if one of the accept cuts has a true result and none of the reject cuts is false ( = accepted)\n"
34 "* 0: if neither one of the accept cuts is true nor one of the reject cuts false ( = don't know) or\n"
35 "* if one of the reject cuts is false ( = rejected)\n"
36 "In short: event accepted <=> (#true accept cuts > 0) && (#false reject cuts == 0)\n"
37 "Please note that the reject cuts override the accept cuts decision in this case!\n"
39 "* 1: if one of the accept cuts has a true result. ( = accepted) or\n"
40 "* if neither one of the accept cuts is true nor one of the reject cuts false ( = don't know)\n"
41 "* 0: if one of the reject cuts is false and none of the accept cuts is true ( = rejected)\n"
42 "Please note that the accept cuts override the reject cuts decision in this case!\n"
43 "In short: event accepted <=> (#true accept cuts > 0) || (#false reject cuts == 0)");
47 addParam(
"baseIdentifier", m_param_baseIdentifier,
"Base identifier for all cuts downloaded from database. "
48 "The full db name of the cuts will be <base_identifier>/<cut_identifier>. You can only choose one identifier "
49 "to make clear that all chosen cuts belong together (and should be calculated together).",
50 m_param_baseIdentifier);
52 addParam(
"resultStoreArrayName", m_param_resultStoreArrayName,
"Store Object Pointer name for storing the "
53 "trigger decision.", m_param_resultStoreArrayName);
55 addParam(
"storeDebugOutputToROOTFile", m_param_storeDebugOutputToROOTFile,
"Flag to save the results of the calculations leading "
56 "to the trigger decisions into a ROOT file. The file path and name of this file can be handled by the "
57 "debugOutputFileName parameter. Not supported during parallel processing.", m_param_storeDebugOutputToROOTFile);
59 addParam(
"preScaleStoreDebugOutputToDataStore", m_param_preScaleStoreDebugOutputToDataStore,
60 "Prescale with which to save the results of the calculations leading "
61 "to the trigger decisions into the DataStore. Leave to zero, to not store them at all.",
62 m_param_preScaleStoreDebugOutputToDataStore);
64 addParam(
"debugOutputFileName", m_param_debugOutputFileName,
"File path and name of the ROOT "
65 "file, in which the results of the calculation are stored, if storeDebugOutput is "
66 "turned on. Please note that already present files will be overridden. "
67 "ATTENTION: This file debugging mode does not work in parallel processing.", m_param_debugOutputFileName);
68 addParam(
"useRandomNumbersForPreScale", m_param_useRandomNumbersForPreScale,
"Flag to use random numbers (True) "
69 "or a counter (False) for applying the prescale.", m_param_useRandomNumbersForPreScale);
111 B2DEBUG(20,
"Doing the calculation...");
112 const SoftwareTriggerObject& prefilledObject =
m_calculation->fillInCalculations();
113 B2DEBUG(20,
"Successfully finished the calculation.");
137 B2FATAL(
"Could not open debug output file. Aborting.");
139 m_debugTTree.reset(
new TTree(
"software_trigger_results",
"software_trigger_results"));
141 B2FATAL(
"Could not create debug output tree. Aborting.");
155 size_t numberOfCuts = (
m_dbHandler->getCutsWithNames()).size();
162 uint32_t* counter{
nullptr};
163 size_t counterIndex{0};
165 for (
const auto& cutWithName :
m_dbHandler->getCutsWithNames()) {
166 const std::string& cutIdentifier = cutWithName.first;
167 const auto& cut = cutWithName.second;
168 B2DEBUG(20,
"Next processing cut " << cutIdentifier <<
" (" << cut->decompile() <<
")");
172 const auto& [prescaledCutResult, nonPrescaledCutResult] = cut->check(prefilledObject, counter);
197 B2DEBUG(20,
"Storing debug output to file as requested.");
199 B2DEBUG(20,
"Finished storing the debug output to file.");
203 B2DEBUG(20,
"Storing debug output to DataStore as requested.");
void beginRun() override
Check if the cut representations in the database have changed and download newer ones if needed.
void initialize() override
Initialize/Require the DB object pointers and any needed store arrays.
void terminate() override
Store and delete the ttree if it was created.
void setDescription(const std::string &description)
Sets the description of the module.
std::unique_ptr< TTree > m_debugTTree
TTree to store the debug output (or a nullptr if we do not save the debug output).
#define REG_MODULE(moduleName)
Register the given module (without 'Module' suffix) with the framework.
@ c_ParallelProcessingCertified
This module can be run in parallel processing mode safely (All I/O must be done through the data stor...
StoreObjPtr< SoftwareTriggerResult > m_resultStoreObjectPointer
Store Object for storing the trigger decision.
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...
@ c_accept
Accept this event.
Helper class for performing up- and downloads of SoftwareTriggerCuts from the database.
unsigned int m_param_preScaleStoreDebugOutputToDataStore
Prescale with which to save the results of the calculations into the DataStore.
void setPropertyFlags(unsigned int propertyFlags)
Sets the flags for the module properties.
Implementation of a calculator used in the SoftwareTriggerModule to fill a SoftwareTriggerObject for ...
std::string m_param_resultStoreArrayName
Store Object Pointer name for storing the trigger decision.
void event() override
Run over all cuts and check them. If one of the cuts yields true, give a positive return value of the...
Abstract base class for different kinds of events.
void initializeCalculation()
Helper function to initialize the calculation by creating a new calculation object and requiring all ...
SoftwareTriggerModule()
Create a new module instance and set the parameters.
void initializeCounters()
Helper function to initialize the internal counters used for each cut identifier.
bool m_param_storeDebugOutputToROOTFile
Flag to also store the result of the calculations into a root file.
@ c_reject
Reject this event.
void setReturnValue(int value)
Sets the return value for this module as integer.
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...
void addParam(const std::string &name, T ¶mVariable, const std::string &description, const T &defaultValue)
Adds a new parameter to the module.
std::string m_param_debugOutputFileName
Output file name for the debug output. Is only used if debug is turned on.
void initializeDebugOutput()
Helper function to initliaze debug output creation by creating a TTree and an object in the data stor...
Implementation of a calculator used in the SoftwareTriggerModule to fill a SoftwareTriggerObject for ...
std::unique_ptr< TFile > m_debugOutputFile
TFile to store the debug TTree (or a nullptr if we do not save the debug output).
std::string m_param_baseIdentifier
Base identifier for all cuts downloaded from database.
StoreObjPtr< SoftwareTriggerVariables > m_debugOutputStoreObject
TTree living in the datastore for debug reasons.
std::unique_ptr< SoftwareTriggerDBHandler > m_dbHandler
Internal handler object for the DB interface.
std::unique_ptr< SoftwareTriggerCalculation > m_calculation
Internal handler for the Calculations (will be set in initialize to the correct one).
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...
void makeDebugOutput()
Helper function to store the calculated variables from the calculation either in the TTree or in the ...
std::string m_param_debugOutputStoreObjName
Output store object name for the debug output. Is only used if debug is turned on.
bool m_param_useRandomNumbersForPreScale
Flag to use random numbers or a counter for applying a prescale.
In the store you can park objects that have to be accessed by various modules.
SoftwareTriggerCutResult
Enumeration with all possible results of the SoftwareTriggerCut.
std::vector< uint32_t > m_counters
Vector of the internal counters used to apply a prescale.
void makeCut(const SoftwareTriggerObject &prefilledObject)
Helper function to perform the actual cut on the prefilled object and set the return value of the mod...