#include <HLTBool.h>
Public Member Functions | |
virtual bool | filter (edm::Event &, const edm::EventSetup &) |
HLTBool (const edm::ParameterSet &) | |
~HLTBool () | |
Private Attributes | |
bool | result_ |
Boolean result. |
This class is an HLTFilter (-> EDFilter) returning always the same configurable Boolean value (good for tests)
See header file for documentation
HLTBool::HLTBool | ( | const edm::ParameterSet & | iConfig | ) | [explicit] |
Definition at line 19 of file HLTBool.cc.
References LogDebug, and result_.
: result_(iConfig.getParameter<bool> ("result")) { LogDebug("HLTBool") << " configured result is: " << result_; }
HLTBool::~HLTBool | ( | ) |
Definition at line 25 of file HLTBool.cc.
{ }
bool HLTBool::filter | ( | edm::Event & | iEvent, |
const edm::EventSetup & | iSetup | ||
) | [virtual] |
Implements HLTFilter.
Definition at line 35 of file HLTBool.cc.
References result_.
{ return result_; }
bool HLTBool::result_ [private] |