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
HLTMuonPtFilter Class Reference

#include <HLTMuonPtFilter.h>

Inheritance diagram for HLTMuonPtFilter:
HLTFilter edm::global::EDFilter<> edm::global::EDFilterBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

virtual bool hltFilter (edm::Event &, const edm::EventSetup &, trigger::TriggerFilterObjectWithRefs &filterproduct) const override
 
 HLTMuonPtFilter (const edm::ParameterSet &)
 Constructor. More...
 
 ~HLTMuonPtFilter ()
 Destructorquer. More...
 
- Public Member Functions inherited from HLTFilter
 HLTFilter (const edm::ParameterSet &config)
 
int module (edm::Event const &) const
 
const std::string * moduleLabel () const
 
int path (edm::Event const &) const
 
const std::string * pathName (edm::Event const &) const
 
std::pair< int, int > pmid (edm::Event const &) const
 
bool saveTags () const
 
virtual ~HLTFilter ()
 
- Public Member Functions inherited from edm::global::EDFilter<>
 EDFilter ()=default
 
- Public Member Functions inherited from edm::global::EDFilterBase
 EDFilterBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDFilterBase ()
 
- 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

double theMinPt
 
std::string theSTAMuonLabel
 

Additional Inherited Members

- Public Types inherited from edm::global::EDFilterBase
typedef EDFilterBase 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 HLTFilter
static void makeHLTFilterDescription (edm::ParameterSetDescription &desc)
 
- Static Public Member Functions inherited from edm::global::EDFilterBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- 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

HLTFilter to select muons above certain Pt

Date:
2009/02/13 15:37:48
Revision:
1.1
Author
Silvia Goy Lopez - CERN silvi.nosp@m.a.go.nosp@m.y.lop.nosp@m.ez@c.nosp@m.ern.c.nosp@m.h

Definition at line 27 of file HLTMuonPtFilter.h.

Constructor & Destructor Documentation

HLTMuonPtFilter::HLTMuonPtFilter ( const edm::ParameterSet pset)

Constructor.

Definition at line 27 of file HLTMuonPtFilter.cc.

References edm::ParameterSet::getParameter(), LogDebug, AlCaHLTBitMon_QueryRunRegistry::string, theMinPt, and theSTAMuonLabel.

27  :
28  HLTFilter(pset)
29 {
30  // the name of the STA rec hits collection
31  theSTAMuonLabel = pset.getParameter<std::string>("SALabel");
32 
33  theMinPt = pset.getParameter<double>("minPt"); // pt min (GeV)
34 
35  LogDebug("HLTMuonPt") << " SALabel : " << theSTAMuonLabel
36  << " Min Pt : " << theMinPt;
37 }
#define LogDebug(id)
T getParameter(std::string const &) const
HLTFilter(const edm::ParameterSet &config)
Definition: HLTFilter.cc:20
std::string theSTAMuonLabel
HLTMuonPtFilter::~HLTMuonPtFilter ( )

Destructorquer.

Destructor.

Definition at line 40 of file HLTMuonPtFilter.cc.

40  {
41 }

Member Function Documentation

bool HLTMuonPtFilter::hltFilter ( edm::Event event,
const edm::EventSetup eventSetup,
trigger::TriggerFilterObjectWithRefs filterproduct 
) const
overridevirtual

Implements HLTFilter.

Definition at line 44 of file HLTMuonPtFilter.cc.

References muonTagProbeFilters_cff::staTracks, theMinPt, and theSTAMuonLabel.

44  {
45  // Get the RecTrack collection from the event
47  event.getByLabel(theSTAMuonLabel, staTracks);
48 
49  reco::TrackCollection::const_iterator staTrack;
50 
51  for (staTrack = staTracks->begin(); staTrack != staTracks->end(); ++staTrack) {
52  if (staTrack->pt()>theMinPt)
53  return true;
54  }
55 
56  return false;
57 }
std::string theSTAMuonLabel

Member Data Documentation

double HLTMuonPtFilter::theMinPt
private

Definition at line 42 of file HLTMuonPtFilter.h.

Referenced by hltFilter(), and HLTMuonPtFilter().

std::string HLTMuonPtFilter::theSTAMuonLabel
private

Definition at line 41 of file HLTMuonPtFilter.h.

Referenced by hltFilter(), and HLTMuonPtFilter().