Belle II Software
release-08-01-10
|
helper class to store the information for a Filter More...
#include <FilterInfo.h>
Public Member Functions | |
FilterInfo () | |
default constructor needed by root | |
FilterInfo (const std::string &aname, double aresult, bool accepted, bool used) | |
no setters so use this one to put in the information! | |
~FilterInfo () | |
destructor | |
std::string | getName () |
getter function to get the name | |
double | getResult () |
returns the result of the filtervariable attached to this filter | |
bool | getWasAccepted () |
returns if the event was accepted | |
bool | getWasUsed () |
returns if filter was evaluated | |
Private Member Functions | |
ClassDef (FilterInfo, 1) | |
Class definition to make this a ROOT class. | |
Private Attributes | |
std::string | m_name |
name of the FilterVariable | |
double | m_result |
the result of the filter variable | |
bool | m_wasAccepted |
stores if filter was accepted | |
bool | m_wasUsed |
stores if filter was evaluated | |
helper class to store the information for a Filter
Definition at line 20 of file FilterInfo.h.