CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
HLTBool Class Reference

#include <HLTBool.h>

Inheritance diagram for HLTBool:
HLTFilter edm::EDFilter edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

virtual bool filter (edm::Event &, const edm::EventSetup &)
 
 HLTBool (const edm::ParameterSet &)
 
 ~HLTBool ()
 
- Public Member Functions inherited from HLTFilter
 HLTFilter ()
 
virtual ~HLTFilter ()
 
- Public Member Functions inherited from edm::EDFilter
 EDFilter ()
 
virtual ~EDFilter ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::EDFilter
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 

Private Attributes

bool result_
 Boolean result. More...
 

Additional Inherited Members

- Public Types inherited from edm::EDFilter
typedef EDFilter ModuleType
 
typedef WorkerT< EDFilterWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Protected Member Functions inherited from edm::EDFilter
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

This class is an HLTFilter (-> EDFilter) returning always the same configurable Boolean value (good for tests)

Date:
2007/08/16 14:49:05
Revision:
1.1
Author
Martin Grunewald

See header file for documentation

Date:
2008/01/09 14:16:15
Revision:
1.3
Author
Martin Grunewald

Definition at line 27 of file HLTBool.h.

Constructor & Destructor Documentation

HLTBool::HLTBool ( const edm::ParameterSet iConfig)
explicit

Definition at line 21 of file HLTBool.cc.

References LogDebug, and result_.

21  :
22  result_(iConfig.getParameter<bool> ("result"))
23 {
24  LogDebug("HLTBool") << " configured result is: " << result_;
25 }
#define LogDebug(id)
T getParameter(std::string const &) const
bool result_
Boolean result.
Definition: HLTBool.h:39
HLTBool::~HLTBool ( )

Definition at line 27 of file HLTBool.cc.

28 {
29 }

Member Function Documentation

void HLTBool::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 32 of file HLTBool.cc.

References edm::ConfigurationDescriptions::add(), and edm::ParameterSetDescription::add().

32  {
34  desc.add<bool>("result",false);
35  descriptions.add("hltBool",desc);
36 }
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
bool HLTBool::filter ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Implements HLTFilter.

Definition at line 44 of file HLTBool.cc.

References result_.

45 {
46  return result_;
47 }
bool result_
Boolean result.
Definition: HLTBool.h:39

Member Data Documentation

bool HLTBool::result_
private

Boolean result.

Definition at line 39 of file HLTBool.h.

Referenced by filter(), and HLTBool().