CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
MuonPtFilter Class Reference

#include <MuonPtFilter.h>

Inheritance diagram for MuonPtFilter:
edm::EDFilter edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

bool filter (edm::Event &, const edm::EventSetup &) override
 
 MuonPtFilter (const edm::ParameterSet &)
 Constructor. More...
 
 ~MuonPtFilter () override
 Destructorquer. More...
 
- Public Member Functions inherited from edm::EDFilter
 EDFilter ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDFilter () override
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
 ~ProducerBase () noexcept(false) override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

double theMinPt
 
std::string theSTAMuonLabel
 

Additional Inherited Members

- Public Types inherited from edm::EDFilter
typedef EDFilter ModuleType
 
- Public Types inherited from edm::ProducerBase
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
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 &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- 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 ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
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

EDFilter to select muons above certain Pt

Date
2012/01/21 17:11:58
Revision
1.3
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 30 of file MuonPtFilter.h.

Constructor & Destructor Documentation

MuonPtFilter::MuonPtFilter ( const edm::ParameterSet pset)

Constructor.

Definition at line 27 of file MuonPtFilter.cc.

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

28 {
29  // the name of the STA rec hits collection
30  theSTAMuonLabel = pset.getParameter<std::string>("SALabel");
31 
32  theMinPt = pset.getParameter<double>("minPt"); // pt min (GeV)
33 
34  LogDebug("MuonPt") << " SALabel : " << theSTAMuonLabel
35  << " Min Pt : " << theMinPt;
36 }
#define LogDebug(id)
T getParameter(std::string const &) const
std::string theSTAMuonLabel
Definition: MuonPtFilter.h:44
double theMinPt
Definition: MuonPtFilter.h:45
MuonPtFilter::~MuonPtFilter ( )
override

Destructorquer.

Destructor.

Definition at line 39 of file MuonPtFilter.cc.

39  {
40 }

Member Function Documentation

bool MuonPtFilter::filter ( edm::Event event,
const edm::EventSetup eventSetup 
)
override

Definition at line 43 of file MuonPtFilter.cc.

References DEFINE_FWK_MODULE.

Referenced by Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::filter(), Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::find(), Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::setDataAccessor(), and Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::switchCenterView().

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

Member Data Documentation

double MuonPtFilter::theMinPt
private

Definition at line 45 of file MuonPtFilter.h.

std::string MuonPtFilter::theSTAMuonLabel
private

Definition at line 44 of file MuonPtFilter.h.