CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
PFTauViewRefSelector Class Reference
Inheritance diagram for PFTauViewRefSelector:
edm::EDFilter edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

bool filter (edm::Event &evt, const edm::EventSetup &es) override
 
 PFTauViewRefSelector (const edm::ParameterSet &pset)
 
 ~PFTauViewRefSelector ()
 
- Public Member Functions inherited from edm::EDFilter
 EDFilter ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDFilter ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

std::string cut_
 
bool filter_
 
std::auto_ptr
< StringCutObjectSelector
< reco::PFTau > > 
outputSelector_
 
edm::InputTag src_
 

Additional Inherited Members

- Public Types inherited from edm::EDFilter
typedef EDFilter ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDFilter
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 32 of file PFTauViewRefSelector.cc.

Constructor & Destructor Documentation

PFTauViewRefSelector::PFTauViewRefSelector ( const edm::ParameterSet pset)
explicit

Definition at line 44 of file PFTauViewRefSelector.cc.

References GOODCOLL_filter_cfg::cut, edm::ParameterSet::exists(), filter_, edm::ParameterSet::getParameter(), outputSelector_, src_, and AlCaHLTBitMon_QueryRunRegistry::string.

44  {
45  src_ = pset.getParameter<edm::InputTag>("src");
46  std::string cut = pset.getParameter<std::string>("cut");
47  filter_ = pset.exists("filter") ? pset.getParameter<bool>("filter") : false;
49  produces<reco::PFTauRefVector>();
50 }
T getParameter(std::string const &) const
bool exists(std::string const &parameterName) const
checks if a parameter exists
std::auto_ptr< StringCutObjectSelector< reco::PFTau > > outputSelector_
PFTauViewRefSelector::~PFTauViewRefSelector ( )
inline

Definition at line 35 of file PFTauViewRefSelector.cc.

35 {}

Member Function Documentation

bool PFTauViewRefSelector::filter ( edm::Event evt,
const edm::EventSetup es 
)
overridevirtual

Implements edm::EDFilter.

Definition at line 53 of file PFTauViewRefSelector.cc.

References filter_, edm::Event::getByLabel(), input, convertSQLitetoXML_cfg::output, outputSelector_, edm::RefVector< C, T, F >::push_back(), edm::Event::put(), src_, and metsig::tau.

53  {
54  std::auto_ptr<reco::PFTauRefVector> output(new reco::PFTauRefVector());
55  // Get the input collection to clean
57  evt.getByLabel(src_, input);
58  // Cast the input candidates to Refs to real taus
59  reco::PFTauRefVector inputRefs =
60  reco::tau::castView<reco::PFTauRefVector>(input);
61 
62  BOOST_FOREACH(const reco::PFTauRef &tau, inputRefs) {
63  if (outputSelector_.get() && (*outputSelector_)(*tau)) {
64  output->push_back(tau);
65  }
66  }
67  size_t outputSize = output->size();
68  evt.put(output);
69  // Filter if desired and no objects passed our cut
70  return !(filter_ && outputSize == 0);
71 }
static std::string const input
Definition: EdmProvDump.cc:43
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:120
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:420
std::auto_ptr< StringCutObjectSelector< reco::PFTau > > outputSelector_

Member Data Documentation

std::string PFTauViewRefSelector::cut_
private

Definition at line 39 of file PFTauViewRefSelector.cc.

bool PFTauViewRefSelector::filter_
private

Definition at line 41 of file PFTauViewRefSelector.cc.

Referenced by filter(), and PFTauViewRefSelector().

std::auto_ptr<StringCutObjectSelector<reco::PFTau> > PFTauViewRefSelector::outputSelector_
private

Definition at line 40 of file PFTauViewRefSelector.cc.

Referenced by filter(), and PFTauViewRefSelector().

edm::InputTag PFTauViewRefSelector::src_
private

Definition at line 38 of file PFTauViewRefSelector.cc.

Referenced by filter(), and PFTauViewRefSelector().